Skip to content
Merged
Changes from 1 commit
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: 4 additions & 0 deletions lib/SPIRV/SPIRVLowerOCLBlocks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ class SPIRVLowerOCLBlocks : public ModulePass {
public:
SPIRVLowerOCLBlocks() : ModulePass(ID) {}

StringRef getPassName() const override {
return "Lower OCL Blocks For SPIRV";
}

bool runOnModule(Module &M) {
bool Changed = false;
for (Function &F : M) {
Expand Down