Parcourir la source

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
Rafael Espindola il y a 7 ans
Parent
commit
f8a103739e
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 3 3
      test/CodeGenCUDA/filter-decl.cu

+ 3 - 3
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