diff options
author | Dan Gohman <gohman@apple.com> | 2009-01-07 00:15:08 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-01-07 00:15:08 +0000 |
commit | 653456c351d9bf908ebd982f6ae9df3449c5f34b (patch) | |
tree | 98457fe42ff76effcac0d72ce81800bd7e9b016e /test/CodeGen/X86/add-with-overflow.ll | |
parent | bc03979536a1ecb220f1330719f3e3973a81ab0b (diff) |
X86_COND_C and X86_COND_NC are alternate mnemonics for
X86_COND_B and X86_COND_AE, respectively.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61835 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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/add-with-overflow.ll b/test/CodeGen/X86/add-with-overflow.ll index 4b9aa98c84..bfb86fd9e6 100644 --- a/test/CodeGen/X86/add-with-overflow.ll +++ b/test/CodeGen/X86/add-with-overflow.ll @@ -1,7 +1,7 @@ ; RUN: llvm-as < %s | llc -march=x86 | grep {jo} | count 2 -; RUN: llvm-as < %s | llc -march=x86 | grep {jc} | count 2 +; RUN: llvm-as < %s | llc -march=x86 | grep {jb} | count 2 ; RUN: llvm-as < %s | llc -march=x86 -fast | grep {jo} | count 2 -; RUN: llvm-as < %s | llc -march=x86 -fast | grep {jc} | count 2 +; RUN: llvm-as < %s | llc -march=x86 -fast | grep {jb} | count 2 @ok = internal constant [4 x i8] c"%d\0A\00" @no = internal constant [4 x i8] c"no\0A\00" |