mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-20 09:30:43 +00:00
14 lines
240 B
Plaintext
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
|
||
|
}
|
||
|
|