From: Rafael Espindola Date: Fri, 23 Feb 2018 19:38:41 +0000 (+0000) Subject: Really fix test on windows. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f8a103739edc2c261953cbc10cffc29e12122880;p=clang Really fix test on windows. Sorry for the noise. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@325943 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCUDA/filter-decl.cu b/test/CodeGenCUDA/filter-decl.cu index 5bd9ca4cf5..0f4691f7c8 100644 --- a/test/CodeGenCUDA/filter-decl.cu +++ b/test/CodeGenCUDA/filter-decl.cu @@ -10,15 +10,15 @@ __asm__("file scope asm is host only"); // CHECK-HOST: constantdata = internal global -// CHECK-DEVICE: constantdata = externally_initialized global +// CHECK-DEVICE: constantdata = {{(dso_local )?}}externally_initialized global __constant__ char constantdata[256]; // CHECK-HOST: devicedata = internal global -// CHECK-DEVICE: devicedata = externally_initialized global +// CHECK-DEVICE: devicedata = {{(dso_local )?}}externally_initialized global __device__ char devicedata[256]; // CHECK-HOST: shareddata = internal global -// CHECK-DEVICE: shareddata = global +// CHECK-DEVICE: shareddata = {{(dso_local )?}}global __shared__ char shareddata[256]; // CHECK-HOST: hostdata = {{(dso_local )?}}global