diff options
author | Craig Topper <craig.topper@gmail.com> | 2014-03-10 02:09:33 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2014-03-10 02:09:33 +0000 |
commit | 6bc27bf35957b511c26e97d3b872fe7922f69ad0 (patch) | |
tree | b8c4cee952e99fc3b30a5e5af43285ea7df35d35 /llvm/lib/Target/ARM/Thumb2RegisterInfo.h | |
parent | 245b7fd3f26f6c2e04f1aec68b5e9b3138a7de7d (diff) | |
download | bcm5719-llvm-6bc27bf35957b511c26e97d3b872fe7922f69ad0.tar.gz bcm5719-llvm-6bc27bf35957b511c26e97d3b872fe7922f69ad0.zip |
[C++11] Add 'override' keyword to virtual methods that override their base class.
llvm-svn: 203433
Diffstat (limited to 'llvm/lib/Target/ARM/Thumb2RegisterInfo.h')
-rw-r--r-- | llvm/lib/Target/ARM/Thumb2RegisterInfo.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/llvm/lib/Target/ARM/Thumb2RegisterInfo.h b/llvm/lib/Target/ARM/Thumb2RegisterInfo.h index b1d63fa86d0..41e4ff3d2d5 100644 --- a/llvm/lib/Target/ARM/Thumb2RegisterInfo.h +++ b/llvm/lib/Target/ARM/Thumb2RegisterInfo.h @@ -29,13 +29,11 @@ public: /// emitLoadConstPool - Emits a load from constpool to materialize the /// specified immediate. - void emitLoadConstPool(MachineBasicBlock &MBB, - MachineBasicBlock::iterator &MBBI, - DebugLoc dl, - unsigned DestReg, unsigned SubIdx, int Val, - ARMCC::CondCodes Pred = ARMCC::AL, - unsigned PredReg = 0, - unsigned MIFlags = MachineInstr::NoFlags) const; + void + emitLoadConstPool(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, + DebugLoc dl, unsigned DestReg, unsigned SubIdx, int Val, + ARMCC::CondCodes Pred = ARMCC::AL, unsigned PredReg = 0, + unsigned MIFlags = MachineInstr::NoFlags) const override; }; } |