blob: cf128b43433ea121e17e60c4d911d8d5c46cfafd [file] [log] [blame]
Rafael Espindola71eccb32013-08-08 19:53:46 +00001// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -emit-llvm %s -o - | FileCheck %s
2// PR5599
3
4void test1_f(void *);
5
6void test1_g(void) {
7 float x[4];
8 test1_f(x);
9}
10// CHECK: @test1_g
11// CHECK: alloca [4 x float], align 16