blob: 3d267325b7a216effed876826b22ce997b7ef6cd [file] [log] [blame]
Tanya Lattnercd0aa812004-11-06 21:40:51 +00001; RUN: llvm-as < %s | llc -march=c
2
Nick Hildenbrandt6d608152002-11-06 21:38:39 +00003%testString = internal constant [18 x sbyte] c "Escaped newline\n\00"
4
5implementation
6
7declare int %printf(sbyte*, ...)
8
9int %main() {
10 call int (sbyte*, ...)* %printf( sbyte* getelementptr ([18 x sbyte]* %testString, long 0, long 0))
11 ret int 0
12}