[llvm] 2dc3d1b - [AMDGPU] Add some missing check prefixes

Jay Foad via llvm-commits llvm-commits at lists.llvm.org
Fri Jul 17 04:59:11 PDT 2020


Author: Jay Foad
Date: 2020-07-17T12:56:29+01:00
New Revision: 2dc3d1b3136522e7c8e92d742d8ecc3405b9b4bb

URL: https://github.com/llvm/llvm-project/commit/2dc3d1b3136522e7c8e92d742d8ecc3405b9b4bb
DIFF: https://github.com/llvm/llvm-project/commit/2dc3d1b3136522e7c8e92d742d8ecc3405b9b4bb.diff

LOG: [AMDGPU] Add some missing check prefixes

Added: 
    

Modified: 
    llvm/test/CodeGen/AMDGPU/perfhint.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/CodeGen/AMDGPU/perfhint.ll b/llvm/test/CodeGen/AMDGPU/perfhint.ll
index a8990be7f19e..375a699e040e 100644
--- a/llvm/test/CodeGen/AMDGPU/perfhint.ll
+++ b/llvm/test/CodeGen/AMDGPU/perfhint.ll
@@ -1,8 +1,8 @@
 ; RUN: llc -march=amdgcn < %s | FileCheck -check-prefix=GCN %s
 
 ; GCN-LABEL: {{^}}test_membound:
-; MemoryBound: 1
-; WaveLimiterHint : 1
+; GCN: MemoryBound: 1
+; GCN: WaveLimiterHint : 1
 define amdgpu_kernel void @test_membound(<4 x i32> addrspace(1)* nocapture readonly %arg, <4 x i32> addrspace(1)* nocapture %arg1) {
 bb:
   %tmp = tail call i32 @llvm.amdgcn.workitem.id.x()
@@ -50,8 +50,8 @@ bb:
 }
 
 ; GCN-LABEL: {{^}}test_indirect:
-; MemoryBound: 0
-; WaveLimiterHint : 1
+; GCN: MemoryBound: 0
+; GCN: WaveLimiterHint : 1
 define amdgpu_kernel void @test_indirect(i32 addrspace(1)* nocapture %arg) {
 bb:
   %tmp = getelementptr inbounds i32, i32 addrspace(1)* %arg, i64 1


        


More information about the llvm-commits mailing list