Please use GitHub pull requests for new patches. Phabricator shutdown timeline
Changeset View
Changeset View
Standalone View
Standalone View
include/llvm/Support/ELF.h
Show All 12 Lines | |||||
EM_NORC = 218, // Nanoradio Optimized RISC | EM_NORC = 218, // Nanoradio Optimized RISC | ||||
EM_CSR_KALIMBA = 219, // CSR Kalimba architecture family | EM_CSR_KALIMBA = 219, // CSR Kalimba architecture family | ||||
EM_AMDGPU = 224, // AMD GPU architecture | EM_AMDGPU = 224, // AMD GPU architecture | ||||
// A request has been made to the maintainer of the official registry for | // A request has been made to the maintainer of the official registry for | ||||
// such numbers for an official value for WebAssembly. As soon as one is | // such numbers for an official value for WebAssembly. As soon as one is | ||||
// allocated, this enum will be updated to use it. | // allocated, this enum will be updated to use it. | ||||
EM_WEBASSEMBLY = 0x4157, // WebAssembly architecture | EM_WEBASSEMBLY = 0x4157, // WebAssembly architecture | ||||
// A request has been made to the maintainer of the official registry for | |||||
// an official value for Lanai. As soon as one is allocated, this enum will be | |||||
// updated to use it. | |||||
EM_LANAI = 0x8123 // Lanai 32-bit processor | |||||
echristo: Add the extra comma at the end here... | |||||
}; | }; | ||||
// Object file classes. | // Object file classes. | ||||
enum { | enum { | ||||
ELFCLASSNONE = 0, | ELFCLASSNONE = 0, | ||||
ELFCLASS32 = 1, // 32-bit object file | ELFCLASS32 = 1, // 32-bit object file | ||||
ELFCLASS64 = 2 // 64-bit object file | ELFCLASS64 = 2 // 64-bit object file | ||||
}; | }; | ||||
Show All 24 Lines | |||||
SHN_HEXAGON_SCOMMON_8 = 0xff04 // Double-word-size access | SHN_HEXAGON_SCOMMON_8 = 0xff04 // Double-word-size access | ||||
}; | }; | ||||
// ELF Relocation types for Hexagon | // ELF Relocation types for Hexagon | ||||
enum { | enum { | ||||
#include "ELFRelocs/Hexagon.def" | #include "ELFRelocs/Hexagon.def" | ||||
}; | }; | ||||
// ELF Relocation type for Lanai. | |||||
enum { | |||||
#include "ELFRelocs/Lanai.def" | |||||
}; | |||||
// ELF Relocation types for S390/zSeries | // ELF Relocation types for S390/zSeries | ||||
enum { | enum { | ||||
#include "ELFRelocs/SystemZ.def" | #include "ELFRelocs/SystemZ.def" | ||||
}; | }; | ||||
// ELF Relocation type for Sparc. | // ELF Relocation type for Sparc. | ||||
enum { | enum { | ||||
#include "ELFRelocs/Sparc.def" | #include "ELFRelocs/Sparc.def" | ||||
Show All 12 Lines |
Add the extra comma at the end here...