mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 23:31:37 +00:00
new testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23394 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9c88d98162
commit
ecd7b6d110
@ -1,4 +1,5 @@
|
||||
; RUN: llvm-as < %s | opt -simplifycfg -adce | llvm-dis | not grep 'call void %f1'
|
||||
; RUN: llvm-as < %s | opt -simplifycfg -adce | llvm-dis | not grep 'call void %f1' &&
|
||||
; RUN: llvm-as < %s | opt -simplifycfg -adce -disable-output
|
||||
declare void %f1()
|
||||
declare void %f2()
|
||||
declare void %f3()
|
||||
@ -6,6 +7,23 @@ declare void %f4()
|
||||
|
||||
implementation
|
||||
|
||||
int %test1(int %X, bool %D) {
|
||||
E:
|
||||
%C = seteq int %X, 0
|
||||
br bool %C, label %T, label %F
|
||||
T:
|
||||
br bool %C, label %B, label %A
|
||||
A:
|
||||
call void %f1()
|
||||
br bool %D, label %T, label %F
|
||||
B:
|
||||
call void %f2()
|
||||
ret int 345
|
||||
F:
|
||||
call void %f3()
|
||||
ret int 123
|
||||
}
|
||||
|
||||
int %test2(int %X, bool %D) {
|
||||
E:
|
||||
%C = seteq int %X, 0
|
||||
|
Loading…
x
Reference in New Issue
Block a user