diff options
author | Roman Divacky <rdivacky@freebsd.org> | 2013-06-07 17:46:57 +0000 |
---|---|---|
committer | Roman Divacky <rdivacky@freebsd.org> | 2013-06-07 17:46:57 +0000 |
commit | 6ca5fd3f30081853cfcf7f83a310f94aac2c5e17 (patch) | |
tree | 1533d2a16aab2a1ef63d9a189de418b44077fe25 /test | |
parent | 2e2630b4623965f890f1f263119e3e495b7bd676 (diff) | |
download | external_llvm-6ca5fd3f30081853cfcf7f83a310f94aac2c5e17.zip external_llvm-6ca5fd3f30081853cfcf7f83a310f94aac2c5e17.tar.gz external_llvm-6ca5fd3f30081853cfcf7f83a310f94aac2c5e17.tar.bz2 |
Fix a typo in asm string of BP* family of instructions. With this fix
I am able to compile/assemble/link/run /bin/echo from FreeBSD.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183537 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/SPARC/64cond.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/SPARC/64cond.ll b/test/CodeGen/SPARC/64cond.ll index f0f6f9e..a586bce 100644 --- a/test/CodeGen/SPARC/64cond.ll +++ b/test/CodeGen/SPARC/64cond.ll @@ -3,7 +3,7 @@ ; CHECK: cmpri ; CHECK: cmp %i1, 1 -; CHECK: bpe %xcc, +; CHECK: be %xcc, define void @cmpri(i64* %p, i64 %x) { entry: %tobool = icmp eq i64 %x, 1 @@ -19,7 +19,7 @@ if.end: ; CHECK: cmprr ; CHECK: cmp %i1, %i2 -; CHECK: bpgu %xcc, +; CHECK: bgu %xcc, define void @cmprr(i64* %p, i64 %x, i64 %y) { entry: %tobool = icmp ugt i64 %x, %y |