https://github.com/tbaederr created 
https://github.com/llvm/llvm-project/pull/196953

There is nothing to fix here. This behavior is on purpose. Remove the "FIXME".

>From 980ffd64bb925d5932184f9f6f46f73a63f73db9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Timm=20B=C3=A4der?= <[email protected]>
Date: Mon, 11 May 2026 15:44:34 +0200
Subject: [PATCH] [clang][test][NFC] Remove a FIXME marker

There is nothing to fix here. This behavior is on purpose. Remove the
"FIXME".
---
 clang/test/AST/ByteCode/cxx14.cpp                | 2 +-
 clang/test/SemaCXX/constant-expression-cxx14.cpp | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/clang/test/AST/ByteCode/cxx14.cpp 
b/clang/test/AST/ByteCode/cxx14.cpp
index 170bd09504993..97d2c0ac4f711 100644
--- a/clang/test/AST/ByteCode/cxx14.cpp
+++ b/clang/test/AST/ByteCode/cxx14.cpp
@@ -43,7 +43,7 @@ namespace InitListModify {
   };
   constexpr Aggregate aggr1;
   static_assert(aggr1.x == 1 && aggr1.y == 1, "");
-  // FIXME: This is not specified by the standard, but sanity requires it.
+  // This is not specified by the standard, but sanity requires it.
   constexpr Aggregate aggr2 = {};
   static_assert(aggr2.x == 1 && aggr2.y == 1, "");
 }
diff --git a/clang/test/SemaCXX/constant-expression-cxx14.cpp 
b/clang/test/SemaCXX/constant-expression-cxx14.cpp
index fb7fd5b528b05..1bead18080271 100644
--- a/clang/test/SemaCXX/constant-expression-cxx14.cpp
+++ b/clang/test/SemaCXX/constant-expression-cxx14.cpp
@@ -1237,7 +1237,7 @@ namespace ObjectsUnderConstruction {
   };
   constexpr Aggregate aggr1;
   static_assert(aggr1.x == 1 && aggr1.y == 1, "");
-  // FIXME: This is not specified by the standard, but sanity requires it.
+  // This is not specified by the standard, but sanity requires it.
   constexpr Aggregate aggr2 = {};
   static_assert(aggr2.x == 1 && aggr2.y == 1, "");
 

_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to