[PATCH] D98401: [CodeGen] Fix backward copy propagation with -g

Adrian Prantl via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 24 15:54:29 PDT 2021


aprantl added inline comments.


================
Comment at: llvm/lib/CodeGen/MachineCopyPropagation.cpp:835
 
+    // Ignore DBG_VALUEs and other meta info
+    if (MI->isMetaInstruction())
----------------
Nit: LLVM coding style prefers full sentences, i.e.:
```
// Ignore DBG_VALUEs and other meta info.
```


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D98401/new/

https://reviews.llvm.org/D98401



More information about the llvm-commits mailing list