blob: 10c69660486757178ee8a6a9b9ea98659be238a9 [file] [log] [blame]
Richard Smith762bb9d2011-10-13 22:29:44 +00001// RUN: %clang_cc1 -std=c++11 -S -emit-llvm -o - %s | FileCheck %s
Sebastian Redlcea8d962011-09-24 17:48:14 +00002
3void f()
4{
5 // CHECK: store i32 0
6 int i{};
7}