Clang Project

clang_source_code/test/CodeGen/dbg-const-int128.c
1// RUN: %clang_cc1 -triple x86_64-unknown-linux -S -emit-llvm -debug-info-kind=limited  %s -o - | FileCheck %s
2// CHECK: !DIGlobalVariable({{.*}}
3// CHECK-NOT: expr:
4
5static const __uint128_t ro = 18446744073709551615;
6
7void bar(__uint128_t);
8void foo() { bar(ro); }
9