mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-17 18:31:04 +00:00
8 lines
132 B
LLVM
8 lines
132 B
LLVM
|
; RUN: llc < %s -march=cpp | FileCheck %s
|
||
|
|
||
|
define void @f1(i8* byval, i8* inalloca) {
|
||
|
; CHECK: ByVal
|
||
|
; CHECK: InAlloca
|
||
|
ret void
|
||
|
}
|