summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/ARM/ARMInstrInfo.h
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-11-06 08:47:38 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-11-06 08:47:38 +0000
commit47b546d75f5ad4f67d10615bfc3a764cff5c6abf (patch)
tree671ee7d9957e8c2358af5e5ed7c0657ac4105220 /llvm/lib/Target/ARM/ARMInstrInfo.h
parentb3f7a39877188405cd52fa6fe5a4533248fb0467 (diff)
downloadbcm5719-llvm-47b546d75f5ad4f67d10615bfc3a764cff5c6abf.tar.gz
bcm5719-llvm-47b546d75f5ad4f67d10615bfc3a764cff5c6abf.zip
Remove opcode from instruction TS flags; add MOVCC support; fix addrmode3 encoding bug.
llvm-svn: 58800
Diffstat (limited to 'llvm/lib/Target/ARM/ARMInstrInfo.h')
-rw-r--r--llvm/lib/Target/ARM/ARMInstrInfo.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/llvm/lib/Target/ARM/ARMInstrInfo.h b/llvm/lib/Target/ARM/ARMInstrInfo.h
index f3ca27f7210..4dcbb6ae7a7 100644
--- a/llvm/lib/Target/ARM/ARMInstrInfo.h
+++ b/llvm/lib/Target/ARM/ARMInstrInfo.h
@@ -59,21 +59,17 @@ namespace ARMII {
IndexModePre = 1,
IndexModePost = 2,
- // Opcode
- OpcodeShift = 9,
- OpcodeMask = 0xf << OpcodeShift,
-
//===------------------------------------------------------------------===//
// Misc flags.
// UnaryDP - Indicates this is a unary data processing instruction, i.e.
// it doesn't have a Rn operand.
- UnaryDP = 1 << 13,
+ UnaryDP = 1 << 9,
//===------------------------------------------------------------------===//
// Instruction encoding formats.
//
- FormShift = 14,
+ FormShift = 10,
FormMask = 0xf << FormShift,
// Pseudo instructions
OpenPOWER on IntegriCloud