brintos

brintos / llvm-project-archived public Read only

0
0
Text · 379 B · 7f8aaef Raw
10 lines · c
1// RUN: %clang_cc1 -triple x86_64-unknown-linux -emit-llvm -debug-info-kind=limited  %s -o - | FileCheck %s2// RUN: %clang_cc1 -triple powerpc64-ibm-aix-xcoff -emit-llvm -debug-info-kind=limited  %s -o - | FileCheck %s3// CHECK: !DIGlobalVariable({{.*}}4// CHECK-NOT: expr:5 6static const __uint128_t ro = 18446744073709551615;7 8void bar(__uint128_t);9void foo(void) { bar(ro); }10