Really fix test on windows.

Sorry for the noise.

llvm-svn: 325943
This commit is contained in:
Rafael Espindola 2018-02-23 19:38:41 +00:00
parent f43c2ff84b
commit 2a639a4c11
1 changed files with 3 additions and 3 deletions

View File

@ -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