llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-hlsl Author: Jay Foad (jayfoad) <details> <summary>Changes</summary> --- Full diff: https://github.com/llvm/llvm-project/pull/178449.diff 4 Files Affected: - (modified) clang/test/AST/HLSL/WaveSize.hlsl (+3-3) - (modified) clang/test/CodeGen/aix-builtin-cpu-supports.c (+1-1) - (modified) clang/test/CodeGenCXX/vtable-assume-load-address-space.cpp (+1-1) - (modified) clang/test/CodeGenCXX/vtable-assume-load.cpp (+1-1) ``````````diff diff --git a/clang/test/AST/HLSL/WaveSize.hlsl b/clang/test/AST/HLSL/WaveSize.hlsl index 44a7bfab1788b..231633bca1ae7 100644 --- a/clang/test/AST/HLSL/WaveSize.hlsl +++ b/clang/test/AST/HLSL/WaveSize.hlsl @@ -1,6 +1,6 @@ // RUN: %clang_cc1 -triple dxil-pc-shadermodel6.8-library -x hlsl -ast-dump -o - %s | FileCheck %s -// CHECK-LABLE:FunctionDecl 0x{{[0-9a-f]+}} <{{.*}}> w0 'void ()' +// CHECK-LABEL:FunctionDecl 0x{{[0-9a-f]+}} <{{.*}}> w0 'void ()' // CHECK:HLSLWaveSizeAttr 0x{{[0-9a-f]+}} <{{.*}}> 128 0 0 [numthreads(8,8,1)] [WaveSize(128)] @@ -9,7 +9,7 @@ -// CHECK-LABLE:FunctionDecl 0x{{[0-9a-f]+}} <{{.*}}> w1 'void ()' +// CHECK-LABEL:FunctionDecl 0x{{[0-9a-f]+}} <{{.*}}> w1 'void ()' // CHECK:HLSLWaveSizeAttr 0x{{[0-9a-f]+}} <{{.*}}> 8 64 0 [numthreads(8,8,1)] [WaveSize(8, 64)] @@ -17,7 +17,7 @@ } -// CHECK-LABLE:FunctionDecl 0x{{[0-9a-f]+}} <{{.*}}> w2 'void ()' +// CHECK-LABEL:FunctionDecl 0x{{[0-9a-f]+}} <{{.*}}> w2 'void ()' // CHECK:HLSLWaveSizeAttr 0x{{[0-9a-f]+}} <{{.*}}> 8 128 64 // Duplicate WaveSize attribute will be ignored. // CHECK-NOT:HLSLWaveSizeAttr 0x{{[0-9a-f]+}} <{{.*}}> 8 128 64 diff --git a/clang/test/CodeGen/aix-builtin-cpu-supports.c b/clang/test/CodeGen/aix-builtin-cpu-supports.c index 52073ddfe0fd9..a15128786244c 100644 --- a/clang/test/CodeGen/aix-builtin-cpu-supports.c +++ b/clang/test/CodeGen/aix-builtin-cpu-supports.c @@ -154,7 +154,7 @@ // CHECKOP-NEXT: store i32 0, ptr %retval, align 4 // SYSCONF-NEXT: %0 = load i32, ptr getelementptr inbounds ({ i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i64, i32, i32, i32, i32, i64, i64, i64, i64, i32, i32, i32, i32, i32, i32, i64, i32, i8, i8, i8, i8, i32, i32, i16, i16, [3 x i32], i32 }, ptr @_system_configuration, i32 0, i32 [[POS]]), align 4 -// SYSCALL-NEXT: %0 = call i64 @getsystemcfg(i32 [[LABLE]]) +// SYSCALL-NEXT: %0 = call i64 @getsystemcfg(i32 [[LABEL]]) // OPRT-NEXT: %1 = icmp [[OP]] [[BIT]] %0, [[VALUE]] // OPRT-NEXT: %conv = zext i1 %1 to i32 diff --git a/clang/test/CodeGenCXX/vtable-assume-load-address-space.cpp b/clang/test/CodeGenCXX/vtable-assume-load-address-space.cpp index e8d3a8407cda7..d27c56d449a58 100644 --- a/clang/test/CodeGenCXX/vtable-assume-load-address-space.cpp +++ b/clang/test/CodeGenCXX/vtable-assume-load-address-space.cpp @@ -112,7 +112,7 @@ void g(B *a) { a->foo(); } // CHECK3: call{{.*}} void @_ZN5test31CC1Ev(ptr // CHECK3: %[[CMP:.*]] = icmp eq ptr addrspace(1) %{{.*}}, getelementptr inbounds inrange(-24, 8) ({ [4 x ptr addrspace(1)] }, ptr addrspace(1) @_ZTVN5test31CE, i32 0, i32 0, i32 3) // CHECK3: call{{.*}} void @llvm.assume(i1 %[[CMP]]) -// CHECK3-LABLEL: } +// CHECK3-LABEL: } void test() { C c; g(&c); diff --git a/clang/test/CodeGenCXX/vtable-assume-load.cpp b/clang/test/CodeGenCXX/vtable-assume-load.cpp index 6ce07d0db1b15..21ed9233a74fa 100644 --- a/clang/test/CodeGenCXX/vtable-assume-load.cpp +++ b/clang/test/CodeGenCXX/vtable-assume-load.cpp @@ -111,7 +111,7 @@ void g(B *a) { a->foo(); } // CHECK3: call void @_ZN5test31CC1Ev(ptr // CHECK3: %[[CMP:.*]] = icmp eq ptr %{{.*}}, getelementptr inbounds inrange(-24, 8) ({ [4 x ptr] }, ptr @_ZTVN5test31CE, i32 0, i32 0, i32 3) // CHECK3: call void @llvm.assume(i1 %[[CMP]]) -// CHECK3-LABLEL: } +// CHECK3-LABEL: } void test() { C c; g(&c); `````````` </details> https://github.com/llvm/llvm-project/pull/178449 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
