mirror of
https://github.com/intel/llvm.git
synced 2026-01-23 07:58:23 +08:00
[llvm-exegesis] Fix unused variable 'VAddressSpaceCeiling' warning (NFC)
/Users/jiefu/llvm-project/llvm/tools/llvm-exegesis/lib/X86/Target.cpp:52:33: error: unused variable 'VAddressSpaceCeiling' [-Werror,-Wunused-const-variable]
static constexpr const intptr_t VAddressSpaceCeiling = 0x0000800000000000;
^
1 error generated.
This commit is contained in:
@@ -46,12 +46,6 @@
|
||||
namespace llvm {
|
||||
namespace exegesis {
|
||||
|
||||
#ifdef __arm__
|
||||
static constexpr const intptr_t VAddressSpaceCeiling = 0xC0000000;
|
||||
#else
|
||||
static constexpr const intptr_t VAddressSpaceCeiling = 0x0000800000000000;
|
||||
#endif
|
||||
|
||||
// If a positive value is specified, we are going to use the LBR in
|
||||
// latency-mode.
|
||||
//
|
||||
@@ -987,6 +981,12 @@ std::vector<MCInst> ExegesisX86Target::setRegTo(const MCSubtargetInfo &STI,
|
||||
|
||||
#ifdef __linux__
|
||||
|
||||
#ifdef __arm__
|
||||
static constexpr const intptr_t VAddressSpaceCeiling = 0xC0000000;
|
||||
#else
|
||||
static constexpr const intptr_t VAddressSpaceCeiling = 0x0000800000000000;
|
||||
#endif
|
||||
|
||||
void generateSyscall(long SyscallNumber, std::vector<MCInst> &GeneratedCode) {
|
||||
GeneratedCode.push_back(
|
||||
loadImmediate(X86::RAX, 64, APInt(64, SyscallNumber)));
|
||||
|
||||
Reference in New Issue
Block a user