Begin adding docs and IR-level support for the inalloca attribute
[oota-llvm.git] / test / CodeGen / CPP / attributes.ll
1 ; RUN: llc < %s -march=cpp | FileCheck %s
2
3 define void @f1(i8* byval, i8* inalloca) {
4 ; CHECK: ByVal
5 ; CHECK: InAlloca
6   ret void
7 }