You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
294 B
10 lines
294 B
4 months ago
|
// RUN: %clang_cc1 %s -emit-llvm -o - -fms-extensions -triple i686-pc-win32 | FileCheck %s
|
||
|
|
||
|
// CHECK-LABEL: define void @test_alloca
|
||
|
void capture(void *);
|
||
|
void test_alloca(int n) {
|
||
|
capture(_alloca(n));
|
||
|
// CHECK: %[[arg:.*]] = alloca i8, i32 %
|
||
|
// CHECK: call void @capture(i8* %[[arg]])
|
||
|
}
|