Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 -triple wasm32-unknown-unknown -emit-llvm %s -o - \
      2 // RUN:   | FileCheck %s
      3 // RUN: %clang_cc1 -triple wasm64-unknown-unknown -emit-llvm %s -o - \
      4 // RUN:   | FileCheck %s
      5 
      6 void test1_f(void *);
      7 
      8 void test1_g(void) {
      9   float x[4];
     10   test1_f(x);
     11 }
     12 // CHECK: @test1_g
     13 // CHECK: alloca [4 x float], align 16
     14