mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
10 lines
215 B
LLVM
10 lines
215 B
LLVM
|
; RUN: llc -mtriple=x86_64-linux < %s | FileCheck %s
|
||
|
; RUN: llc -mtriple=x86_64-windows-msvc < %s | FileCheck %s
|
||
|
|
||
|
define void @foo(i8*, ...) {
|
||
|
ret void
|
||
|
}
|
||
|
; CHECK-LABEL: {{^_?}}foo:
|
||
|
; CHECK-NOT: movq
|
||
|
; CHECK: retq
|