[PATCH] D80019: [WebAssembly] Fixed debugloc in DebugFixup pass
Heejin Ahn via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri May 15 14:09:59 PDT 2020
aheejin added inline comments.
================
Comment at: llvm/lib/Target/WebAssembly/WebAssemblyDebugFixup.cpp:121
BuildMI(*Prev.DebugValue->getParent(), std::next(MII),
- MI.getDebugLoc(), TII->get(WebAssembly::DBG_VALUE), false,
+ Prev.DebugValue->getDebugLoc(), TII->get(WebAssembly::DBG_VALUE), false,
Register(), Prev.DebugValue->getOperand(2).getMetadata(),
----------------
clang-format. You can use https://reviews.llvm.org/project/view/78/ to detect this kind of issues. (This emits a lot of errors for other people's code, so it's a bit annoying.)
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D80019/new/
https://reviews.llvm.org/D80019
More information about the llvm-commits
mailing list