Author: rafael Date: Fri Feb 23 11:38:41 2018 New Revision: 325943 URL: http://llvm.org/viewvc/llvm-project?rev=325943&view=rev Log: Really fix test on windows.
Sorry for the noise. Modified: cfe/trunk/test/CodeGenCUDA/filter-decl.cu Modified: cfe/trunk/test/CodeGenCUDA/filter-decl.cu URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCUDA/filter-decl.cu?rev=325943&r1=325942&r2=325943&view=diff ============================================================================== --- cfe/trunk/test/CodeGenCUDA/filter-decl.cu (original) +++ cfe/trunk/test/CodeGenCUDA/filter-decl.cu Fri Feb 23 11:38:41 2018 @@ -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 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits