diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-06-26 00:28:48 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-06-26 00:28:48 +0000 |
commit | 151b9afdee10995add2f28790194570e7735f03c (patch) | |
tree | 9b9c7464c8853ecc6361c2fd81cc1f2efd216c02 | |
parent | 30d670f51fb44e3679d5d368f5226ea10267050e (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
-rw-r--r-- | lib/Target/ARM/README.txt | 2 |
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. |