llvm-6502/test/CodeGen/X86/2003-08-03-ReservedWordFunction.llx

14 lines
240 B
Plaintext
Raw Normal View History

; 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
}