2009-09-09 08:09:15 +08:00
|
|
|
; RUN: llc < %s -march=c
|
2004-11-07 05:40:51 +08:00
|
|
|
|
2002-08-21 00:01:23 +08:00
|
|
|
; The C Writer bombs on this testcase because it tries the print the prototype
|
|
|
|
; for the test function, which tries to print the argument name. The function
|
|
|
|
; has not been incorporated into the slot calculator, so after it does the name
|
|
|
|
; lookup, it tries a slot calculator lookup, which fails.
|
|
|
|
|
2008-02-19 09:41:04 +08:00
|
|
|
define i32 @test(i32) {
|
|
|
|
ret i32 0
|
2002-08-21 00:01:23 +08:00
|
|
|
}
|