12 lines · c
1// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -emit-llvm %s -o - | FileCheck %s2// PR55993 4void test1_f(void *);5 6void test1_g(void) {7 float x[4];8 test1_f(x);9}10// CHECK: @test1_g11// CHECK: alloca [4 x float], align 1612