Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGen / attr-nouwtable.c
bloba0c6d9232ef302f3d2deeef3bfae44b8c3714782
1 // RUN: %clang_cc1 -funwind-tables=2 -S -emit-llvm %s -o - | FileCheck %s
3 __attribute__((nouwtable))
4 int test1(void) { return 0; }
6 // CHECK: @test1{{.*}}[[ATTR1:#[0-9]+]]
7 // CHECK: attributes [[ATTR1]] = {
8 // CHECK-NOT: uwtable
9 // CHECK: }