[clang] [clang][test][NFC] Remove a FIXME marker (PR #196953)
Timm Baeder via cfe-commits
cfe-commits at lists.llvm.org
Mon May 11 06:45:53 PDT 2026
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?= <tbaeder at redhat.com>
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, "");
More information about the cfe-commits
mailing list