diff options
Diffstat (limited to 'llvm/lib/Bytecode/Reader/Reader.h')
-rw-r--r-- | llvm/lib/Bytecode/Reader/Reader.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/lib/Bytecode/Reader/Reader.h b/llvm/lib/Bytecode/Reader/Reader.h index 20801da94f6..4720e88a3cf 100644 --- a/llvm/lib/Bytecode/Reader/Reader.h +++ b/llvm/lib/Bytecode/Reader/Reader.h @@ -127,9 +127,10 @@ public: public: /// @brief Main interface to parsing a bytecode buffer. void ParseBytecode( - const unsigned char *Buf, ///< Beginning of the bytecode buffer - unsigned Length, ///< Length of the bytecode buffer - const std::string &ModuleID ///< An identifier for the module constructed. + const unsigned char *Buf, ///< Beginning of the bytecode buffer + unsigned Length, ///< Length of the bytecode buffer + const std::string &ModuleID, ///< An identifier for the module constructed. + bool processFunctions=false ///< Process all function bodies fully. ); /// @brief Parse all function bodies |