Skip to content

Commit 3f70ded

Browse files
committed
Simplify test
1 parent 84f0f11 commit 3f70ded

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sycl/test/check_device_code/device_global_const.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ device_global<const int> DeviceGlobalVar;
1313
int main() {
1414
queue Q;
1515
Q.single_task([]() {
16-
// CHECK-CONST: (ptr addrspace(4) @DeviceGlobalVar
17-
// CHECK: (ptr addrspace(1) @DeviceGlobalVar
16+
// CHECK-CONST: addrspace(4) @DeviceGlobalVar
17+
// CHECK: addrspace(1) @DeviceGlobalVar
1818
volatile int ReadVal = DeviceGlobalVar;
1919
});
2020
return 0;

0 commit comments

Comments
 (0)