[Lldb-commits] [lldb] [clang] [clang][DebugInfo] Emit global variable definitions for static data members with constant initializers (PR #70639)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Tue Oct 31 14:02:47 PDT 2023
================
@@ -67,15 +67,15 @@ int C::a = 4;
// CHECK-NOT: size:
// CHECK-NOT: align:
// CHECK-NOT: offset:
-// CHECK-SAME: flags: DIFlagStaticMember,
-// CHECK-SAME: extraData: i1 true)
+// CHECK-SAME: flags: DIFlagStaticMember
+// CHECK-NOT: extraData:
----------------
Michael137 wrote:
Merging the two makes sense. I tried that initially but the C++98 FileCheck was tedious to work around. But with the latest iteration of the patch that shouldn't be a problem
https://github.com/llvm/llvm-project/pull/70639
More information about the lldb-commits
mailing list