We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 337fae7 commit c73d6fdCopy full SHA for c73d6fd
bolt/lib/Target/AArch64/AArch64MCPlusBuilder.cpp
@@ -533,6 +533,10 @@ class AArch64MCPlusBuilder : public MCPlusBuilder {
533
return false;
534
};
535
536
+ // FIXME: Not all load instructions are handled by this->mayLoad(Inst).
537
+ // On the other hand, MCInstrDesc::mayLoad() is permitted to return
538
+ // true for non-load instructions (such as AArch64::HINT) which
539
+ // would result in false negatives.
540
if (mayLoad(Inst)) {
541
// The first Use operand is the base address register.
542
unsigned BaseRegIndex = Desc.getNumDefs();
0 commit comments