[clang] [CUDA][HIP] Exclude external variables from constant promotion. (PR #73549)

Levon Ter-Grigoryan via cfe-commits cfe-commits at lists.llvm.org
Thu Nov 30 08:06:18 PST 2023


================
@@ -104,3 +106,17 @@ void fun() {
   (void) b<double>;
   (void) var_host_only;
 }
+
+// NEG-NOT: external_func
+extern __global__ void external_func();
+// NEG-NOT: @external_dep
+extern void* const external_dep[] = {
+  (void*)(external_func)
+};
+// NEG-NOT: @external_arr
----------------
PatriosTheGreat wrote:

Ah, sorry misunderstood original comment.
Changed test code to use implicit-check, thanks for the reference

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


More information about the cfe-commits mailing list