aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-08-12 18:35:50 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-08-12 18:35:50 +0000
commit3aaccffbce9146aad97929d5812fb6271a7443ef (patch)
tree8592bc84fcc3e3fda0084af19ac5f7457a863a6b
parenta12e9d751b64767a5c41a718da2a91122d5874c4 (diff)
PredCC is meant to be 2 bits wide, like PredCC1.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78829 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/ARM/Thumb2SizeReduction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/Thumb2SizeReduction.cpp b/lib/Target/ARM/Thumb2SizeReduction.cpp
index c9f3ad2de2..fd6bcf0f5e 100644
--- a/lib/Target/ARM/Thumb2SizeReduction.cpp
+++ b/lib/Target/ARM/Thumb2SizeReduction.cpp
@@ -48,7 +48,7 @@ namespace {
unsigned PredCC1 : 2; // 0 - If predicated, cc is on and vice versa.
// 1 - No cc field.
// 2 - Always set CPSR.
- unsigned PredCC2 : 1;
+ unsigned PredCC2 : 2;
unsigned Special : 1; // Needs to be dealt with specially
};