[PATCH] D133914: [InlineAsm][bugfix] Correct function addressing in inline asm

Simon Pilgrim via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Sep 26 03:28:02 PDT 2022


RKSimon added inline comments.


================
Comment at: llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp:8723
 
+static bool isFunction(SDValue &Op) {
+  if (Op.getNode() && Op.getOpcode() == ISD::GlobalAddress) {
----------------
Pass SDValue by value not reference


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

https://reviews.llvm.org/D133914



More information about the llvm-commits mailing list