Alter 79292 to produce output that actually assembles.
[oota-llvm.git] / test / CodeGen / CBackend / 2002-11-06-PrintEscaped.ll
1 ; RUN: llvm-as < %s | llc -march=c
2
3 @testString = internal constant [18 x i8] c"Escaped newline\5Cn\00"             ; <[18 x i8]*> [#uses=1]
4
5 declare i32 @printf(i8*, ...)
6
7 define i32 @main() {
8         call i32 (i8*, ...)* @printf( i8* getelementptr ([18 x i8]* @testString, i64 0, i64 0) )                ; <i32>:1 [#uses=0]
9         ret i32 0
10 }
11