brintos

brintos / llvm-project-archived public Read only

0
0
Text · 229 B · cf128b4 Raw
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