diff options
Diffstat (limited to 'clang/test/CodeGenOpenCL/address-spaces.cl')
-rw-r--r-- | clang/test/CodeGenOpenCL/address-spaces.cl | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/clang/test/CodeGenOpenCL/address-spaces.cl b/clang/test/CodeGenOpenCL/address-spaces.cl index 3b0a6201640..f4ddbc611c2 100644 --- a/clang/test/CodeGenOpenCL/address-spaces.cl +++ b/clang/test/CodeGenOpenCL/address-spaces.cl @@ -1,9 +1,9 @@ // RUN: %clang_cc1 %s -O0 -ffake-address-space-map -emit-llvm -o - | FileCheck %s --check-prefixes=CHECK,SPIR // RUN: %clang_cc1 %s -O0 -DCL20 -cl-std=CL2.0 -ffake-address-space-map -emit-llvm -o - | FileCheck %s --check-prefixes=CL20,CL20SPIR -// RUN: %clang_cc1 %s -O0 -triple amdgcn-amd-amdhsa -emit-llvm -o - | FileCheck --check-prefixes=CHECK,GIZ %s -// RUN: %clang_cc1 %s -O0 -triple amdgcn-amd-amdhsa -DCL20 -cl-std=CL2.0 -emit-llvm -o - | FileCheck %s --check-prefixes=CL20,CL20GIZ -// RUN: %clang_cc1 %s -O0 -triple amdgcn-mesa-mesa3d -emit-llvm -o - | FileCheck --check-prefixes=CHECK,GIZ %s -// RUN: %clang_cc1 %s -O0 -triple r600-- -emit-llvm -o - | FileCheck --check-prefixes=CHECK,GIZ %s +// RUN: %clang_cc1 %s -O0 -triple amdgcn-amd-amdhsa -emit-llvm -o - | FileCheck --check-prefixes=CHECK,AMDGCN %s +// RUN: %clang_cc1 %s -O0 -triple amdgcn-amd-amdhsa -DCL20 -cl-std=CL2.0 -emit-llvm -o - | FileCheck %s --check-prefixes=CL20,CL20AMDGCN +// RUN: %clang_cc1 %s -O0 -triple amdgcn-mesa-mesa3d -emit-llvm -o - | FileCheck --check-prefixes=CHECK,AMDGCN %s +// RUN: %clang_cc1 %s -O0 -triple r600-- -emit-llvm -o - | FileCheck --check-prefixes=CHECK,AMDGCN %s // SPIR: %struct.S = type { i32, i32, i32* } // CL20SPIR: %struct.S = type { i32, i32, i32 addrspace(4)* } @@ -24,7 +24,7 @@ struct S g_s; #endif // SPIR: i32* %arg -// GIZ: i32 addrspace(5)* %arg +// AMDGCN: i32 addrspace(5)* %arg void f__p(__private int *arg) {} // CHECK: i32 addrspace(1)* %arg @@ -34,11 +34,11 @@ void f__g(__global int *arg) {} void f__l(__local int *arg) {} // SPIR: i32 addrspace(2)* %arg -// GIZ: i32 addrspace(4)* %arg +// AMDGCN: i32 addrspace(4)* %arg void f__c(__constant int *arg) {} // SPIR: i32* %arg -// GIZ: i32 addrspace(5)* %arg +// AMDGCN: i32 addrspace(5)* %arg void fp(private int *arg) {} // CHECK: i32 addrspace(1)* %arg @@ -48,7 +48,7 @@ void fg(global int *arg) {} void fl(local int *arg) {} // SPIR: i32 addrspace(2)* %arg -// GIZ: i32 addrspace(4)* %arg +// AMDGCN: i32 addrspace(4)* %arg void fc(constant int *arg) {} #ifdef CL20 @@ -56,20 +56,20 @@ int i; // CL20-DAG: @i = common addrspace(1) global i32 0 int *ptr; // CL20SPIR-DAG: @ptr = common addrspace(1) global i32 addrspace(4)* null -// CL20GIZ-DAG: @ptr = common addrspace(1) global i32* null +// CL20AMDGCN-DAG: @ptr = common addrspace(1) global i32* null #endif // SPIR: i32* %arg -// GIZ: i32 addrspace(5)* %arg +// AMDGCN: i32 addrspace(5)* %arg // CL20SPIR-DAG: i32 addrspace(4)* %arg -// CL20GIZ-DAG: i32* %arg +// CL20AMDGCN-DAG: i32* %arg void f(int *arg) { int i; // SPIR: %i = alloca i32, -// GIZ: %i = alloca i32{{.*}}addrspace(5) +// AMDGCN: %i = alloca i32{{.*}}addrspace(5) // CL20SPIR-DAG: %i = alloca i32, -// CL20GIZ-DAG: %i = alloca i32{{.*}}addrspace(5) +// CL20AMDGCN-DAG: %i = alloca i32{{.*}}addrspace(5) #ifdef CL20 static int ii; |