Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion llvm/lib/Target/SPIRV/SPIRVLegalizeImplicitBinding.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ class SPIRVLegalizeImplicitBinding : public ModulePass {
public:
static char ID;
SPIRVLegalizeImplicitBinding() : ModulePass(ID) {}

StringRef getPassName() const override {
return "SPIRV Legalize Implicit Binding";
}
bool runOnModule(Module &M) override;

private:
Expand Down
4 changes: 2 additions & 2 deletions llvm/test/CodeGen/SPIRV/llc-pipeline.ll
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
; SPIRV-O0-NEXT: Lower invoke and unwind, for unwindless code generators
; SPIRV-O0-NEXT: Remove unreachable blocks from the CFG
; SPIRV-O0-NEXT: SPIRV strip convergent intrinsics
; SPIRV-O0-NEXT: Unnamed pass: implement Pass::getPassName()
; SPIRV-O0-NEXT: SPIRV Legalize Implicit Binding
; SPIRV-O0-NEXT: SPIRV CBuffer Access
; SPIRV-O0-NEXT: SPIRV emit intrinsics
; SPIRV-O0-NEXT: FunctionPass Manager
Expand Down Expand Up @@ -137,7 +137,7 @@
; SPIRV-Opt-NEXT: Lower invoke and unwind, for unwindless code generators
; SPIRV-Opt-NEXT: Remove unreachable blocks from the CFG
; SPIRV-Opt-NEXT: SPIRV strip convergent intrinsics
; SPIRV-Opt-NEXT: Unnamed pass: implement Pass::getPassName()
; SPIRV-Opt-NEXT: SPIRV Legalize Implicit Binding
; SPIRV-Opt-NEXT: SPIRV CBuffer Access
; SPIRV-Opt-NEXT: SPIRV emit intrinsics
; SPIRV-Opt-NEXT: FunctionPass Manager
Expand Down