[PATCH] D79058: [MachineVerifier] Add a pass to ensure debug locations within a basic block are monotonically increasing
Davide Italiano via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 28 18:22:52 PDT 2020
davide marked an inline comment as done.
davide added inline comments.
================
Comment at: llvm/lib/CodeGen/MachineVerifier.cpp:329-330
+ // may shuffle instructions around.
+ if (MF.getTarget().getOptLevel() == CodeGenOpt::None &&
+ MF.getTarget().Options.EnableGlobalISel)
+ return;
----------------
Oops, this condition is inverted :(
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D79058/new/
https://reviews.llvm.org/D79058
More information about the llvm-commits
mailing list