diff --git a/lib/Bytecode/Reader/Reader.h b/lib/Bytecode/Reader/Reader.h index df0ddca7472..25410838d34 100644 --- a/lib/Bytecode/Reader/Reader.h +++ b/lib/Bytecode/Reader/Reader.h @@ -321,6 +321,12 @@ private: // unreachable instruction. bool hasNoUnreachableInst; + /// In release 1.7 we changed intrinsic functions to not be overloaded. There + /// is no bytecode change for this, but to optimize the auto-upgrade of calls + /// to intrinsic functions, we set this flag to identify when a module has + /// been read that contains intrinsics that were upgraded. + bool hasUpgradedIntrinsicFunctions; + /// CompactionTypes - If a compaction table is active in the current function, /// this is the mapping that it contains. We keep track of what resolved type /// it is as well as what global type entry it is. @@ -389,6 +395,7 @@ private: /// @brief Handler for parsing events. BytecodeHandler* Handler; + /// @} /// @name Implementation Details /// @{