diff options
author | Jie Fu <jiefu@tencent.com> | 2025-04-30 19:15:27 +0800 |
---|---|---|
committer | Jie Fu <jiefu@tencent.com> | 2025-04-30 19:15:27 +0800 |
commit | 6e43cdbc25e90d88251d69519822713afc20108c (patch) | |
tree | 5d162907408b1edef25212227a9ff5575edf2823 /llvm/lib/CodeGen/VirtRegMap.cpp | |
parent | f2b8539803ea5887a9653d26cdcacaabd536ae1c (diff) | |
download | llvm-6e43cdbc25e90d88251d69519822713afc20108c.zip llvm-6e43cdbc25e90d88251d69519822713afc20108c.tar.gz llvm-6e43cdbc25e90d88251d69519822713afc20108c.tar.bz2 |
[CodeGen] Remove unused variable 'ID' (NFC)
/llvm-project/llvm/lib/CodeGen/VirtRegMap.cpp:225:15:
error: unused variable 'ID' [-Werror,-Wunused-variable]
static char ID;
^
1 error generated.
Diffstat (limited to 'llvm/lib/CodeGen/VirtRegMap.cpp')
-rw-r--r-- | llvm/lib/CodeGen/VirtRegMap.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/VirtRegMap.cpp b/llvm/lib/CodeGen/VirtRegMap.cpp index 60859fd..49e819e 100644 --- a/llvm/lib/CodeGen/VirtRegMap.cpp +++ b/llvm/lib/CodeGen/VirtRegMap.cpp @@ -222,7 +222,6 @@ class VirtRegRewriter { MCRegister PhysReg, const MachineInstr &MI) const; public: - static char ID; VirtRegRewriter(bool ClearVirtRegs, SlotIndexes *Indexes, LiveIntervals *LIS, LiveRegMatrix *LRM, VirtRegMap *VRM, LiveDebugVariables *DebugVars) |