blob: eb86c08db69d4c165b6d9b45f73cc315489d9740 [file] [log] [blame]
Chris Lattner00af1172002-12-04 17:00:25 +00001
2%X = global int 7
3%msg = internal global [13 x sbyte] c"Hello World\0D\00"
4
5
6implementation
7
8declare void %printf([13 x sbyte]*)
9
10void %bar() {
11 call void %printf([13 x sbyte]* %msg)
12 ret void
13}
14
15void %main() {
16 call void %bar()
17 ret void
18}
19