aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-06-26 00:28:48 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-06-26 00:28:48 +0000
commit151b9afdee10995add2f28790194570e7735f03c (patch)
tree9b9c7464c8853ecc6361c2fd81cc1f2efd216c02 /lib
parent30d670f51fb44e3679d5d368f5226ea10267050e (diff)
Add a note about commuting conditional move.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74241 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/ARM/README.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Target/ARM/README.txt b/lib/Target/ARM/README.txt
index 3e248a6c92..4223699b9d 100644
--- a/lib/Target/ARM/README.txt
+++ b/lib/Target/ARM/README.txt
@@ -528,3 +528,5 @@ those operations and the ARMv6 scalar versions.
//===---------------------------------------------------------------------===//
+ARM::MOVCCr is commutable (by flipping the condition). But we need to implement
+ARMInstrInfo::commuteInstruction() to support it.