[clang] [nfc][clang] Fix test in new-array-init.cpp (PR #79225)

via cfe-commits cfe-commits at lists.llvm.org
Tue Jan 23 15:27:51 PST 2024


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-clang

Author: Alan Zhao (alanzhao1)

<details>
<summary>Changes</summary>

This test was originally introduced in
https://github.com/llvm/llvm-project/pull/76976, but it incorrectly tests braced-list initialization instead of parenthesized initialization.

---
Full diff: https://github.com/llvm/llvm-project/pull/79225.diff


1 Files Affected:

- (modified) clang/test/CodeGenCXX/new-array-init.cpp (+1-1) 


``````````diff
diff --git a/clang/test/CodeGenCXX/new-array-init.cpp b/clang/test/CodeGenCXX/new-array-init.cpp
index fe1bdf425ab142f..781c4728df45095 100644
--- a/clang/test/CodeGenCXX/new-array-init.cpp
+++ b/clang/test/CodeGenCXX/new-array-init.cpp
@@ -164,7 +164,7 @@ void string_sufficient_paren() {
   // FIXME: For very large arrays, it would be preferable to emit a small copy and a memset.
   // CHECKCXX20: call void @llvm.memcpy{{.*}}(ptr align {{[0-9]+}} %[[PTR]], ptr align {{[0-9]+}} @[[ABC15]], i32 15,
   // CHECKCXX20-NOT: memset
-  new char[15] { "abc" };
+  new char[15]("abc");
 }
 #endif
 

``````````

</details>


https://github.com/llvm/llvm-project/pull/79225


More information about the cfe-commits mailing list