Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGen / dbg-const-int128.c
blobc780c8f4ffe60d82853f9c25eb51af6520b05945
1 // RUN: %clang_cc1 -triple x86_64-unknown-linux -S -emit-llvm -debug-info-kind=limited %s -o - | FileCheck %s
2 // RUN: %clang_cc1 -triple powerpc64-ibm-aix-xcoff -S -emit-llvm -debug-info-kind=limited %s -o - | FileCheck %s
3 // CHECK: !DIGlobalVariable({{.*}}
4 // CHECK-NOT: expr:
6 static const __uint128_t ro = 18446744073709551615;
8 void bar(__uint128_t);
9 void foo(void) { bar(ro); }