diff options
author | Bill Wendling <isanbard@gmail.com> | 2008-12-02 01:06:39 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2008-12-02 01:06:39 +0000 |
commit | 61edeb5ed26d970cfc08ee71081d5095df4b59bb (patch) | |
tree | 178b468b4d68392be132291b8b079d19c951dd50 /test/CodeGen/X86/add-with-overflow.ll | |
parent | 9f24874f2e38bab927fcc940fc523e22a7d643e2 (diff) |
Second stab at target-dependent lowering of everyone's favorite nodes: [SU]ADDO
- LowerXADDO lowers [SU]ADDO into an ADD with an implicit EFLAGS define. The
EFLAGS are fed into a SETCC node which has the conditional COND_O or COND_C,
depending on the type of ADDO requested.
- LowerBRCOND now recognizes if it's coming from a SETCC node with COND_O or
COND_C set.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60388 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/add-with-overflow.ll')
-rw-r--r-- | test/CodeGen/X86/add-with-overflow.ll | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/CodeGen/X86/add-with-overflow.ll b/test/CodeGen/X86/add-with-overflow.ll index 84cc157a58..8fab46cd62 100644 --- a/test/CodeGen/X86/add-with-overflow.ll +++ b/test/CodeGen/X86/add-with-overflow.ll @@ -1,6 +1,5 @@ ; RUN: llvm-as < %s | llc -march=x86 | grep {jo} | count 1 ; RUN: llvm-as < %s | llc -march=x86 | grep {jc} | count 1 -; XFAIL: * @ok = internal constant [4 x i8] c"%d\0A\00" @no = internal constant [4 x i8] c"no\0A\00" |