Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
cea8d966f826554f0679595e9371e314e8dbc1cf
/
.
/
test
/
CodeGenCXX
/
cxx0x-initializer-scalars.cpp
blob: a951dd1344fdbcb79854fb707150ac073ea905ee [
file
] [
log
] [
blame
]
Sebastian Redl
cea8d96
2011-09-24 17:48:14 +0000
[
diff
] [
blame^
]
1
// RUN: %clang_cc1 -std=c++0x -S -emit-llvm -o - %s | FileCheck %s
2
3
void
f
()
4
{
5
// CHECK: store i32 0
6
int
i
{};
7
}