llvm-project/clang/test/CodeGenCXX/cxx0x-initializer-scalars.cpp
Fangrui Song c5de4dd1ea [test] %clang_cc1 -emit-llvm: remove redundant -S
And replace -emit-llvm -o - with -emit-llvm-only
2024-05-04 17:00:29 -07:00

8 lines
113 B
C++

// RUN: %clang_cc1 -std=c++11 -emit-llvm -o - %s | FileCheck %s
void f()
{
// CHECK: store i32 0
int i{};
}