repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
align-wasm.c
blob
ff0c213acddeca38fed6491be0f3f8b72a520019
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