summaryrefslogtreecommitdiff
path: root/test/CodeGen
diff options
context:
space:
mode:
authorRoman Divacky <rdivacky@freebsd.org>2013-06-07 17:46:57 +0000
committerRoman Divacky <rdivacky@freebsd.org>2013-06-07 17:46:57 +0000
commit6ca5fd3f30081853cfcf7f83a310f94aac2c5e17 (patch)
tree1533d2a16aab2a1ef63d9a189de418b44077fe25 /test/CodeGen
parent2e2630b4623965f890f1f263119e3e495b7bd676 (diff)
downloadllvm-6ca5fd3f30081853cfcf7f83a310f94aac2c5e17.tar.gz
llvm-6ca5fd3f30081853cfcf7f83a310f94aac2c5e17.tar.bz2
llvm-6ca5fd3f30081853cfcf7f83a310f94aac2c5e17.tar.xz
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/CodeGen')
-rw-r--r--test/CodeGen/SPARC/64cond.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/SPARC/64cond.ll b/test/CodeGen/SPARC/64cond.ll
index f0f6f9e749..a586bce575 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