llvm-6502/test/CodeGen/X86/2003-08-03-ReservedWordFunction.llx
2004-02-09 22:52:25 +00:00

14 lines
240 B
Plaintext

; This testcase ensures the code emitter does something about the fact that
; we can have collisions with keywords
; RUN: llvm-as < %s | llc | not grep '^byte:'
void %byte() {
ret void
}
int %main() {
call void %byte()
ret int 0
}