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 | e2c4d35f3ed36b9686ce325de816a5978607fc14 (patch) | |
tree | e413f4b9e904a46caf6b8aaff01b697f131cebc6 /llvm/lib | |
parent | 31167c61d50a012f77c2fe4e374cb4a91b2995e2 (diff) | |
download | bcm5719-llvm-e2c4d35f3ed36b9686ce325de816a5978607fc14.tar.gz bcm5719-llvm-e2c4d35f3ed36b9686ce325de816a5978607fc14.zip |
Add a note about commuting conditional move.
llvm-svn: 74241
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/ARM/README.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Target/ARM/README.txt b/llvm/lib/Target/ARM/README.txt index 3e248a6c927..4223699b9d0 100644 --- a/llvm/lib/Target/ARM/README.txt +++ b/llvm/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. |