Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
test
/
CodeGenCXX
/
cxx11-noreturn.cpp
blob: b876bb9661bae6fecd82c9aa465b4ed8e4781856 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm -triple %itanium_abi_triple -std=c++11 %s -o - | FileCheck %s
int
g
();
// CHECK: _Z1fv(){{.*}} [[NR:#[0-9]+]]
[[
noreturn
]]
int
f
()
{
while
(
g
())
{}
}
// CHECK: attributes [[NR]] = { noreturn nounwind{{.*}} }