blob: 31c651d75efcf99c10b585706f0860030fbb18b3 [file] [log] [blame]
// RUN: %clang_cc1 -emit-llvm -std=c++11 %s -o - | FileCheck %s
int g();
// CHECK: _Z1fv(){{.*}} [[NR:#[0-9]+]]
[[noreturn]] int f() {
while (g()) {}
}
// CHECK: attributes [[NR]] = { noreturn nounwind{{.*}} }