Author: Douglas Yung
Date: 2020-06-02T20:17:02Z
New Revision: 086be9fb20489540e6228a6d9eb4afad533202fa

URL: 
https://github.com/llvm/llvm-project/commit/086be9fb20489540e6228a6d9eb4afad533202fa
DIFF: 
https://github.com/llvm/llvm-project/commit/086be9fb20489540e6228a6d9eb4afad533202fa.diff

LOG: Fix test on PS4 linux bot.

Commit 301a6da8c24a09052e3bda10e90b450b7b39ffea changed the test and modified a 
CHECK
line that is inconsisent with similar lines elsewhere in the file and was 
causing failures
when run in slightly different configurations. This change makes the line more 
consistent
and should fix the bot failure.

Failure link: 
http://lab.llvm.org:8011/builders/llvm-clang-lld-x86_64-scei-ps4-ubuntu-fast/builds/68593

Added: 
    

Modified: 
    clang/test/CodeGenOpenCL/amdgpu-nullptr.cl

Removed: 
    


################################################################################
diff  --git a/clang/test/CodeGenOpenCL/amdgpu-nullptr.cl 
b/clang/test/CodeGenOpenCL/amdgpu-nullptr.cl
index 753f7f6f4406..ddf358c1188e 100644
--- a/clang/test/CodeGenOpenCL/amdgpu-nullptr.cl
+++ b/clang/test/CodeGenOpenCL/amdgpu-nullptr.cl
@@ -358,8 +358,8 @@ void test_cast_null_pointer_to_sizet_calee(size_t 
arg_private,
                                            size_t arg_generic);
 
 // CHECK-LABEL: test_cast_null_pointer_to_sizet
-// CHECK: call void @test_cast_null_pointer_to_sizet_calee(i64 ptrtoint (i8 
addrspace(5)* addrspacecast (i8* null to i8 addrspace(5)*) to i64), i64 
ptrtoint (i8 addrspace(3)* addrspacecast (i8* null to i8 addrspace(3)*) to 
i64), i64 0, i64 0, i64 0) #7
-// CHECK: call void @test_cast_null_pointer_to_sizet_calee(i64 ptrtoint (i8 
addrspace(5)* addrspacecast (i8* null to i8 addrspace(5)*) to i64), i64 
ptrtoint (i8 addrspace(3)* addrspacecast (i8* null to i8 addrspace(3)*) to 
i64), i64 0, i64 0, i64 0) #7
+// CHECK: call void @test_cast_null_pointer_to_sizet_calee(i64 ptrtoint (i8 
addrspace(5)* addrspacecast (i8* null to i8 addrspace(5)*) to i64), i64 
ptrtoint (i8 addrspace(3)* addrspacecast (i8* null to i8 addrspace(3)*) to 
i64), i64 0, i64 0, i64 0)
+// CHECK: call void @test_cast_null_pointer_to_sizet_calee(i64 ptrtoint (i8 
addrspace(5)* addrspacecast (i8* null to i8 addrspace(5)*) to i64), i64 
ptrtoint (i8 addrspace(3)* addrspacecast (i8* null to i8 addrspace(3)*) to 
i64), i64 0, i64 0, i64 0)
 void test_cast_null_pointer_to_sizet(void) {
   test_cast_null_pointer_to_sizet_calee((size_t)((private char*)0),
                                         (size_t)((local char*)0),


        
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to