1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Add const.

llvm-svn: 147054
This commit is contained in:
Rafael Espindola 2011-12-21 14:48:04 +00:00
parent 318dc6e7f4
commit 2334fc676a

View File

@ -31,7 +31,7 @@ public:
Triple::OSType getOSType() { return OSType; } Triple::OSType getOSType() { return OSType; }
uint16_t getEMachine() { return EMachine; } uint16_t getEMachine() { return EMachine; }
bool hasRelocationAddend() { return HasRelocationAddend; } bool hasRelocationAddend() { return HasRelocationAddend; }
bool is64Bit() { return Is64Bit; } bool is64Bit() const { return Is64Bit; }
/// @} /// @}
}; };