diff options
author | Matthias Braun <matze@braunis.de> | 2015-05-18 20:27:55 +0000 |
---|---|---|
committer | Matthias Braun <matze@braunis.de> | 2015-05-18 20:27:55 +0000 |
commit | fa3872e7ad06f2959f61eba4f0a5c91be7133091 (patch) | |
tree | 729858e0cce4cb38a08b847db344a6dde2764224 /llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp | |
parent | db364695543cfad3f40ef25457cea558c4aebd20 (diff) | |
download | bcm5719-llvm-fa3872e7ad06f2959f61eba4f0a5c91be7133091.tar.gz bcm5719-llvm-fa3872e7ad06f2959f61eba4f0a5c91be7133091.zip |
MachineInstr: Change return value of getOpcode() to unsigned.
This was previously returning int. However there are no negative opcode
numbers and more importantly this was needlessly different from
MCInstrDesc::getOpcode() (which even is the value returned here) and
SDValue::getOpcode()/SDNode::getOpcode().
llvm-svn: 237611
Diffstat (limited to 'llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp')
-rw-r--r-- | llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp b/llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp index b1499e2c06d..1c2e7320e25 100644 --- a/llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp +++ b/llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp @@ -494,7 +494,7 @@ AArch64LoadStoreOpt::findMatchingInsn(MachineBasicBlock::iterator I, MachineInstr *FirstMI = I; ++MBBI; - int Opc = FirstMI->getOpcode(); + unsigned Opc = FirstMI->getOpcode(); bool MayLoad = FirstMI->mayLoad(); bool IsUnscaled = isUnscaledLdst(Opc); unsigned Reg = FirstMI->getOperand(0).getReg(); @@ -954,7 +954,7 @@ bool AArch64LoadStoreOpt::optimizeBlock(MachineBasicBlock &MBB) { MachineInstr *MI = MBBI; // Do update merging. It's simpler to keep this separate from the above // switch, though not strictly necessary. - int Opc = MI->getOpcode(); + unsigned Opc = MI->getOpcode(); switch (Opc) { default: // Just move on to the next instruction. |