[BitcodeReader] Remove unnecessary argument defaults (NFC)
authorNikita Popov <npopov@redhat.com>
Wed, 15 Jun 2022 11:23:32 +0000 (13:23 +0200)
committerNikita Popov <npopov@redhat.com>
Wed, 15 Jun 2022 11:24:13 +0000 (13:24 +0200)
This is an internal method that is always called with all arguments.

llvm/lib/Bitcode/Reader/BitcodeReader.cpp

index 263ffc8..6a7cd68 100644 (file)
@@ -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);