[clang] 99ff5d5 - [clang][Interp][NFC] Simplify test

Timm Bäder via cfe-commits cfe-commits at lists.llvm.org
Sat Jun 29 01:30:46 PDT 2024


Author: Timm Bäder
Date: 2024-06-29T09:42:37+02:00
New Revision: 99ff5d5c963b8bd9ccae99fbb17b8fc537fe8095

URL: https://github.com/llvm/llvm-project/commit/99ff5d5c963b8bd9ccae99fbb17b8fc537fe8095
DIFF: https://github.com/llvm/llvm-project/commit/99ff5d5c963b8bd9ccae99fbb17b8fc537fe8095.diff

LOG: [clang][Interp][NFC] Simplify test

Added: 
    

Modified: 
    clang/test/AST/Interp/arrays.cpp

Removed: 
    


################################################################################
diff  --git a/clang/test/AST/Interp/arrays.cpp b/clang/test/AST/Interp/arrays.cpp
index 26ec39e9cca65..933437c3401c4 100644
--- a/clang/test/AST/Interp/arrays.cpp
+++ b/clang/test/AST/Interp/arrays.cpp
@@ -513,11 +513,9 @@ namespace NonConstReads {
             // both-note {{read of non-const variable 'z'}}
 #else
   void *p = nullptr;
-  int arr[!p]; // ref-error {{not allowed at file scope}} \
-               // expected-error {{not allowed at file scope}}
+  int arr[!p]; // both-error {{not allowed at file scope}}
   int z;
-  int a[z]; // ref-error {{not allowed at file scope}} \
-            // expected-error {{not allowed at file scope}}
+  int a[z]; // both-error {{not allowed at file scope}}
 #endif
 
   const int y = 0;


        


More information about the cfe-commits mailing list