diff options
| author | Mark Searles <m.c.searles@gmail.com> | 2017-12-07 21:14:41 +0000 |
|---|---|---|
| committer | Mark Searles <m.c.searles@gmail.com> | 2017-12-07 21:14:41 +0000 |
| commit | 9ebdbb433a926c759f8e188cd344c47050a76bb9 (patch) | |
| tree | 2df8eb2800739ede917d30dc35f677563aef397c /llvm/test/CodeGen/AMDGPU | |
| parent | 690f0e2f4e9e1a981759c9fe723941675f0ea7ae (diff) | |
| download | bcm5719-llvm-9ebdbb433a926c759f8e188cd344c47050a76bb9.tar.gz bcm5719-llvm-9ebdbb433a926c759f8e188cd344c47050a76bb9.zip | |
[AMDGPU] Revert "[AMDGPU] Add options for waitcnt pass debugging; add instr count in debug output."
Patch caused a buildbot failure; http://lab.llvm.org:8011/builders/lld-x86_64-darwin13/builds/15733/steps/build_Lld/logs/stdio :
lib/Target/AMDGPU/SIInsertWaitcnts.cpp:396:11: error: private field 'InstCnt' is not used [-Werror,-Wunused-private-field]
int32_t InstCnt = 0;
^
1 error generated.
"
This reverts commit 71627f79010aafe74fdcba901bba28dd7caa0869.
llvm-svn: 320086
Diffstat (limited to 'llvm/test/CodeGen/AMDGPU')
| -rw-r--r-- | llvm/test/CodeGen/AMDGPU/waitcnt-debug.mir | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/llvm/test/CodeGen/AMDGPU/waitcnt-debug.mir b/llvm/test/CodeGen/AMDGPU/waitcnt-debug.mir deleted file mode 100644 index 86430fc75e9..00000000000 --- a/llvm/test/CodeGen/AMDGPU/waitcnt-debug.mir +++ /dev/null @@ -1,41 +0,0 @@ -# RUN: llc -mtriple=amdgcn -verify-machineinstrs -run-pass si-insert-waitcnts -amdgpu-waitcnt-forcelgkm=1 -o - %s | FileCheck -check-prefixes=GCN,LGKM %s -# RUN: llc -mtriple=amdgcn -verify-machineinstrs -run-pass si-insert-waitcnts -amdgpu-waitcnt-forceexp=2 -o - %s | FileCheck -check-prefixes=GCN,EXP %s -# RUN: llc -mtriple=amdgcn -verify-machineinstrs -run-pass si-insert-waitcnts -amdgpu-waitcnt-forcevm=3 -o - %s | FileCheck -check-prefixes=GCN,VM %s -# RUN: llc -mtriple=amdgcn -verify-machineinstrs -run-pass si-insert-waitcnts -amdgpu-waitcnt-forcezero=1 -amdgpu-waitcnt-forcevm=2 -o - %s | FileCheck -check-prefixes=GCN,ZERO %s - -# check that the waitcnt pass options that force insertion of waitcnt instructions are working as expected - -... -# GCN-LABEL: name: waitcnt-debug -# LGKM: S_WAITCNT 127 -# LGKM-NEXT: S_NOP 0 -# LGKM-NEXT: S_NOP 0 - -# EXP: S_WAITCNT 3855 -# EXP-NEXT: S_NOP 0 -# EXP-NEXT: S_WAITCNT 3855 -# EXP-NEXT: S_NOP 0 - -# VM: S_WAITCNT 3952 -# VM-NEXT: S_NOP 0 -# VM-NEXT: S_WAITCNT 3952 -# VM-NEXT: S_NOP 0 -# VM-NEXT: S_WAITCNT 3952 -# VM-NEXT: S_NOP 0 - -# ZERO: S_WAITCNT 0 -# ZERO-NEXT: S_WAITCNT 0 -# ZERO-NEXT: S_NOP 0 -# ZERO-NEXT: S_WAITCNT 0 -# ZERO-NEXT: S_NOP 0 - -name: waitcnt-debug -liveins: -body: | - bb.0: - S_NOP 0 - S_NOP 0 - S_NOP 0 - S_NOP 0 -... - |

