10 lines · c
1// RUN: %clang_cc1 -funwind-tables=2 -emit-llvm %s -o - | FileCheck %s2 3__attribute__((nouwtable))4int test1(void) { return 0; }5 6// CHECK: @test1{{.*}}[[ATTR1:#[0-9]+]]7// CHECK: attributes [[ATTR1]] = {8// CHECK-NOT: uwtable9// CHECK: }10