projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
884f228
)
Add a CMP test.
author
Jim Grosbach
<grosbach@apple.com>
Fri, 22 Oct 2010 23:48:01 +0000
(23:48 +0000)
committer
Jim Grosbach
<grosbach@apple.com>
Fri, 22 Oct 2010 23:48:01 +0000
(23:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117187
91177308
-0d34-0410-b5e6-
96231b3b80d8
test/MC/ARM/simple-encoding.ll
patch
|
blob
|
history
diff --git
a/test/MC/ARM/simple-encoding.ll
b/test/MC/ARM/simple-encoding.ll
index df0d46806afb8581a3f9a4ca395765f286addeac..f279bdaa6347c44c3a9c29df4adb44b6e55b4bb0 100644
(file)
--- a/
test/MC/ARM/simple-encoding.ll
+++ b/
test/MC/ARM/simple-encoding.ll
@@
-226,3
+226,12
@@
define i32 @f23(i32 %X, i32 %Y) {
%tmp3 = or i32 %tmp1, %tmp2
ret i32 %tmp3
}
+
+define void @f24(i32 %a) {
+; CHECK: f24
+; CHECK: cmp r0, #1, 16 @ encoding: [0x01,0x08,0x50,0xe3]
+ %b = icmp ugt i32 %a, 65536
+ br i1 %b, label %r, label %r
+r:
+ ret void
+}