blob: b876bb9661bae6fecd82c9aa465b4ed8e4781856 [file] [log] [blame]
Stephen Hines651f13c2014-04-23 16:59:28 -07001// RUN: %clang_cc1 -emit-llvm -triple %itanium_abi_triple -std=c++11 %s -o - | FileCheck %s
Richard Smithcd8ab512013-01-17 01:30:42 +00002
3int g();
4
Bill Wendling3bba3ef2013-02-20 19:30:01 +00005// CHECK: _Z1fv(){{.*}} [[NR:#[0-9]+]]
Richard Smithcd8ab512013-01-17 01:30:42 +00006[[noreturn]] int f() {
7 while (g()) {}
8}
Bill Wendlingf7a9da02013-02-20 07:22:19 +00009
Bill Wendling3bba3ef2013-02-20 19:30:01 +000010// CHECK: attributes [[NR]] = { noreturn nounwind{{.*}} }