blob: 8ca27cffb0445e30c45c9bcdd27acad9b52a751a (
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
; RUN: llvm-as < %s | llc | not grep '^byte:'
void %byte() {
ret void
}
int %main() {
call void %byte()
ret int 0
}
|