From 7cc4d4497ced700d906951fe1875e5d1e4d95810 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Wed, 15 Jun 2022 13:23:32 +0200 Subject: [BitcodeReader] Remove unnecessary argument defaults (NFC) This is an internal method that is always called with all arguments. --- llvm/lib/Bitcode/Reader/BitcodeReader.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/lib/Bitcode/Reader/BitcodeReader.cpp') diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp index 263ffc8..6a7cd68 100644 --- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp @@ -596,8 +596,8 @@ public: /// Main interface to parsing a bitcode buffer. /// \returns true if an error occurred. Error parseBitcodeInto( - Module *M, bool ShouldLazyLoadMetadata = false, bool IsImporting = false, - DataLayoutCallbackTy DataLayoutCallback = [](StringRef) { return None; }); + Module *M, bool ShouldLazyLoadMetadata, bool IsImporting, + DataLayoutCallbackTy DataLayoutCallback); static uint64_t decodeSignRotatedValue(uint64_t V); -- cgit v1.1