blob: a951dd1344fdbcb79854fb707150ac073ea905ee [file] [log] [blame]
Sebastian Redlcea8d962011-09-24 17:48:14 +00001// RUN: %clang_cc1 -std=c++0x -S -emit-llvm -o - %s | FileCheck %s
2
3void f()
4{
5 // CHECK: store i32 0
6 int i{};
7}