[clang] 9b549f2 - AMDGPU: Update clang test

Matt Arsenault via cfe-commits cfe-commits at lists.llvm.org
Thu Jan 16 15:10:37 PST 2020


Author: Matt Arsenault
Date: 2020-01-16T18:10:29-05:00
New Revision: 9b549f26fab6900b5328c0c6239fd77c7527159c

URL: https://github.com/llvm/llvm-project/commit/9b549f26fab6900b5328c0c6239fd77c7527159c
DIFF: https://github.com/llvm/llvm-project/commit/9b549f26fab6900b5328c0c6239fd77c7527159c.diff

LOG: AMDGPU: Update clang test

Added: 
    

Modified: 
    clang/test/CodeGenOpenCL/builtins-amdgcn-gfx10.cl

Removed: 
    


################################################################################
diff  --git a/clang/test/CodeGenOpenCL/builtins-amdgcn-gfx10.cl b/clang/test/CodeGenOpenCL/builtins-amdgcn-gfx10.cl
index 3921cb90c3a5..a90d55fa8a78 100644
--- a/clang/test/CodeGenOpenCL/builtins-amdgcn-gfx10.cl
+++ b/clang/test/CodeGenOpenCL/builtins-amdgcn-gfx10.cl
@@ -6,15 +6,15 @@
 typedef unsigned int uint;
 
 // CHECK-LABEL: @test_permlane16(
-// CHECK: call i32 @llvm.amdgcn.permlane16(i32 %a, i32 %b, i32 %c, i32 %d, i1 true, i1 true)
+// CHECK: call i32 @llvm.amdgcn.permlane16(i32 %a, i32 %b, i32 %c, i32 %d, i1 false, i1 false)
 void test_permlane16(global uint* out, uint a, uint b, uint c, uint d) {
-  *out = __builtin_amdgcn_permlane16(a, b, c, d, 1, 1);
+  *out = __builtin_amdgcn_permlane16(a, b, c, d, 0, 0);
 }
 
 // CHECK-LABEL: @test_permlanex16(
-// CHECK: call i32 @llvm.amdgcn.permlanex16(i32 %a, i32 %b, i32 %c, i32 %d, i1 true, i1 true)
+// CHECK: call i32 @llvm.amdgcn.permlanex16(i32 %a, i32 %b, i32 %c, i32 %d, i1 false, i1 false)
 void test_permlanex16(global uint* out, uint a, uint b, uint c, uint d) {
-  *out = __builtin_amdgcn_permlanex16(a, b, c, d, 1, 1);
+  *out = __builtin_amdgcn_permlanex16(a, b, c, d, 0, 0);
 }
 
 // CHECK-LABEL: @test_mov_dpp8(


        


More information about the cfe-commits mailing list