summaryrefslogtreecommitdiff
path: root/lib/Target/ARM/ARMInstrInfo.h
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-11-06 17:48:05 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-11-06 17:48:05 +0000
commit12c3a533c50fe3c7475c1ff7c1bb4b26e36dc6c3 (patch)
treece49ef21de173149f54d1a25dd3b4b2a9cd8840a /lib/Target/ARM/ARMInstrInfo.h
parenteb5d95a22df7ab88815f35bdc8b6e5d3a6a1119d (diff)
downloadllvm-12c3a533c50fe3c7475c1ff7c1bb4b26e36dc6c3.tar.gz
llvm-12c3a533c50fe3c7475c1ff7c1bb4b26e36dc6c3.tar.bz2
llvm-12c3a533c50fe3c7475c1ff7c1bb4b26e36dc6c3.tar.xz
- Improve naming consistency: Branch -> BrFrm, BranchMisc -> BrMiscFrm.
- Consolidate instruction formats. - Other clean up. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58808 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMInstrInfo.h')
-rw-r--r--lib/Target/ARM/ARMInstrInfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/ARM/ARMInstrInfo.h b/lib/Target/ARM/ARMInstrInfo.h
index 4dcbb6ae7a..c2eb54c8b6 100644
--- a/lib/Target/ARM/ARMInstrInfo.h
+++ b/lib/Target/ARM/ARMInstrInfo.h
@@ -79,8 +79,8 @@ namespace ARMII {
MulFrm = 2 << FormShift,
// Branch instructions
- Branch = 3 << FormShift,
- BranchMisc = 4 << FormShift,
+ BrFrm = 3 << FormShift,
+ BrMiscFrm = 4 << FormShift,
// Data Processing instructions
DPFrm = 5 << FormShift,