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