aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/MBlaze/brind.ll
diff options
context:
space:
mode:
authorWesley Peck <peckw@wesleypeck.com>2010-10-21 03:34:22 +0000
committerWesley Peck <peckw@wesleypeck.com>2010-10-21 03:34:22 +0000
commit60e7127e862e359eb1b4694e5161da6dc4c2c397 (patch)
tree3b7b7f394b741cfd7b592c76909062d7a30623a7 /test/CodeGen/MBlaze/brind.ll
parentd9707e3d852622197133a73dcb788a7fcd364015 (diff)
downloadexternal_llvm-60e7127e862e359eb1b4694e5161da6dc4c2c397.zip
external_llvm-60e7127e862e359eb1b4694e5161da6dc4c2c397.tar.gz
external_llvm-60e7127e862e359eb1b4694e5161da6dc4c2c397.tar.bz2
Reverting the commit 116986. It was breaking the build on llvm-x86_64-linux though it
compiles on OS X. I'll ensure that it builds on a linux machine before committing again. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116991 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/MBlaze/brind.ll')
-rw-r--r--test/CodeGen/MBlaze/brind.ll13
1 files changed, 7 insertions, 6 deletions
diff --git a/test/CodeGen/MBlaze/brind.ll b/test/CodeGen/MBlaze/brind.ll
index 4ec8605..7798e0f 100644
--- a/test/CodeGen/MBlaze/brind.ll
+++ b/test/CodeGen/MBlaze/brind.ll
@@ -28,31 +28,32 @@ loop:
label %L3,
label %L4,
label %L5 ]
- ; CHECK: brd {{r[0-9]*}}
+ ; CHECK: br {{r[0-9]*}}
L1:
%tmp.1 = add i32 %a, %b
br label %finish
- ; CHECK: brid
+ ; CHECK: br
L2:
%tmp.2 = sub i32 %a, %b
br label %finish
- ; CHECK: brid
+ ; CHECK: br
L3:
%tmp.3 = mul i32 %a, %b
br label %finish
- ; CHECK: brid
+ ; CHECK: br
L4:
%tmp.4 = sdiv i32 %a, %b
br label %finish
- ; CHECK: brid
+ ; CHECK: br
L5:
%tmp.5 = srem i32 %a, %b
br label %finish
+ ; CHECK: br
finish:
%tmp.6 = phi i32 [ %tmp.1, %L1 ],
@@ -68,5 +69,5 @@ finish:
%tmp.8 = urem i32 %tmp.7, 5
br label %loop
- ; CHECK: brid
+ ; CHECK: br
}