mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 17:37:24 +00:00
new testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30282 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
56eac5f6f7
commit
06f7ee9133
20
test/CodeGen/X86/jump_sign.ll
Normal file
20
test/CodeGen/X86/jump_sign.ll
Normal file
@ -0,0 +1,20 @@
|
||||
; RUN: llvm-as < %s | llc -march=x86 | grep js
|
||||
int %f(int %X) {
|
||||
entry:
|
||||
%tmp1 = add int %X, 1 ; <int> [#uses=1]
|
||||
%tmp = setlt int %tmp1, 0 ; <bool> [#uses=1]
|
||||
br bool %tmp, label %cond_true, label %cond_next
|
||||
|
||||
cond_true: ; preds = %entry
|
||||
%tmp2 = tail call int (...)* %bar( ) ; <int> [#uses=0]
|
||||
br label %cond_next
|
||||
|
||||
cond_next: ; preds = %entry, %cond_true
|
||||
%tmp3 = tail call int (...)* %baz( ) ; <int> [#uses=0]
|
||||
ret int undef
|
||||
}
|
||||
|
||||
declare int %bar(...)
|
||||
|
||||
declare int %baz(...)
|
||||
|
Loading…
Reference in New Issue
Block a user