blob: 2d0a0bd440eb18930d5d5c0eec13a4c373387956 [file] [log] [blame]
; This testcase ensures the code emitter does something about the fact that
; we can have collisions with keywords
; XFAIL: linux,sun
; RUN: llvm-as < %s | llc | not grep '^byte:'
void %byte() {
ret void
}
int %main() {
call void %byte()
ret int 0
}