Skip to content
Open
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: 2 additions & 2 deletions llvm/lib/Target/RISCV/ISPMetadataPass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ static void setMIFlags(MachineInstr *MI) {
MI->setFlag(MachineInstr::FnEpilog);
}
else if ( MI->isCall() )
MI->setFlag(MachineInstr::IsCall);
MI->setFlags(MachineInstr::IsCall);
else if ( MI->isBranch() )
MI->setFlag(MachineInstr::IsBranch);
MI->setFlags(MachineInstr::IsBranch);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since this immediately reverts the previous commit, can both be dropped?


}

Expand Down