mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-19 17:33:29 +00:00
79caafeefe
as it fails. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11250 91177308-0d34-0410-b5e6-96231b3b80d8
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
|
|
}
|
|
|