blob: 2d0a0bd440eb18930d5d5c0eec13a4c373387956 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
; 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
}
|