[PATCH] D56183: [CallSite removal] Port `IndirectCallSiteVisitor` to use `CallBase` and update client code.

Saleem Abdulrasool via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Dec 31 22:45:00 PST 2018


compnerd accepted this revision.
compnerd added inline comments.
This revision is now accepted and ready to land.


================
Comment at: llvm/lib/IR/Instructions.cpp:264
+    return false;
+  if (const CallInst *CI = dyn_cast<CallInst>(this)) {
+    if (CI->isInlineAsm())
----------------
Braces aren't needed.


Repository:
  rL LLVM

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

https://reviews.llvm.org/D56183





More information about the llvm-commits mailing list