14 lines · c
1// RUN: %clang_cc1 -triple wasm32-unknown-unknown -emit-llvm %s -o - \2// RUN: | FileCheck %s3// RUN: %clang_cc1 -triple wasm64-unknown-unknown -emit-llvm %s -o - \4// RUN: | FileCheck %s5 6void test1_f(void *);7 8void test1_g(void) {9 float x[4];10 test1_f(x);11}12// CHECK: @test1_g13// CHECK: alloca [4 x float], align 1614