mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-29 23:12:55 +01: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
|
||
|
}
|