1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Testcase for P926

llvm-svn: 31058
This commit is contained in:
Bill Wendling 2006-10-19 23:21:59 +00:00
parent edce5ede57
commit 14b1a3c31b

View File

@ -0,0 +1,27 @@
; RUN: llvm-as < %s | llc -march=x86 | %prcontext "jg LBB1_5" 1 | grep "LBB1_4:"
%str = internal constant [14 x sbyte] c"Hello world!\0A\00" ; <[14 x sbyte]*> [#uses=1]
%str = internal constant [13 x sbyte] c"Blah world!\0A\00" ; <[13 x sbyte]*> [#uses=1]
implementation ; Functions:
int %main(int %argc, sbyte** %argv) {
entry:
switch int %argc, label %UnifiedReturnBlock [
int 1, label %bb
int 2, label %bb2
]
bb: ; preds = %entry
%tmp1 = tail call int (sbyte*, ...)* %printf( sbyte* getelementptr ([14 x sbyte]* %str, int 0, uint 0) ) ; <int> [#uses=0]
ret int 0
bb2: ; preds = %entry
%tmp4 = tail call int (sbyte*, ...)* %printf( sbyte* getelementptr ([13 x sbyte]* %str, int 0, uint 0) ) ; <int> [#uses=0]
ret int 0
UnifiedReturnBlock: ; preds = %entry
ret int 0
}
declare int %printf(sbyte*, ...)