[clang] [llvm] [DebugInfo] Emit DW_AT_const_value for constexpr array static members (PR #182442)
Michael Buch via cfe-commits
cfe-commits at lists.llvm.org
Wed Mar 4 01:31:46 PST 2026
================
@@ -0,0 +1,44 @@
+// RUN: %clang_cc1 -triple x86_64-linux-gnu -std=c++17 -emit-llvm \
+// RUN: -debug-info-kind=standalone -o - %s | FileCheck %s
+
+using uint16_t = unsigned short;
+using uint32_t = unsigned int;
+using uint64_t = unsigned long long;
----------------
Michael137 wrote:
Would be nice to have a test for 128-bit integers (`__uint128_t`/`__int128_t`)
https://github.com/llvm/llvm-project/pull/182442
More information about the cfe-commits
mailing list