aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenOpenCL/lifetime.cl
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGenOpenCL/lifetime.cl')
-rw-r--r--test/CodeGenOpenCL/lifetime.cl4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGenOpenCL/lifetime.cl b/test/CodeGenOpenCL/lifetime.cl
index 430e0582aeda..ed9f32fde933 100644
--- a/test/CodeGenOpenCL/lifetime.cl
+++ b/test/CodeGenOpenCL/lifetime.cl
@@ -1,5 +1,5 @@
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
-// RUN: %clang_cc1 -emit-llvm -o - -triple amdgcn---amdgizcl %s | FileCheck %s -check-prefix=AMDGIZ
+// RUN: %clang_cc1 -emit-llvm -o - -triple amdgcn %s | FileCheck %s -check-prefix=AMDGCN
void use(char *a);
@@ -10,6 +10,6 @@ __attribute__((always_inline)) void helper_no_markers() {
void lifetime_test() {
// CHECK: @llvm.lifetime.start.p0i
-// AMDGIZ: @llvm.lifetime.start.p5i
+// AMDGCN: @llvm.lifetime.start.p5i
helper_no_markers();
}