Home | History | Annotate | Download | only in CodeGenCXX
      1 // RUN: %clang_cc1 -std=c++11 -S -emit-llvm -o - %s | FileCheck %s
      2 
      3 void f()
      4 {
      5   // CHECK: store i32 0
      6   int i{};
      7 }
      8