[PATCH] D65712: [Attributor] Introduce the IRAttribute helper struct
Simon Pilgrim via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 30 03:23:26 PDT 2019
RKSimon added inline comments.
================
Comment at: llvm/trunk/include/llvm/Transforms/IPO/Attributor.h:959
+ IRPosition &getIRPosition() { return *this; }
+ const IRPosition &getIRPosition() const { return *this; }
+ ///}
----------------
@jdoerfert Is this correct? I'm seeing cppcheck warnings that these are missing override specifiers.
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D65712/new/
https://reviews.llvm.org/D65712
More information about the llvm-commits
mailing list