We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dea612 commit 8e21d7bCopy full SHA for 8e21d7b
lldb/include/lldb/Utility/ReproducerInstrumentation.h
@@ -280,10 +280,12 @@ class Deserializer {
280
281
/// Deserialize and interpret value as T.
282
template <typename T> T Deserialize() {
283
+ T t = Read<T>(typename serializer_tag<T>::type());
284
#ifdef LLDB_REPRO_INSTR_TRACE
- llvm::errs() << "Deserializing with " << LLVM_PRETTY_FUNCTION << "\n";
285
+ llvm::errs() << "Deserializing with " << LLVM_PRETTY_FUNCTION << " -> "
286
+ << stringify_args(t) << "\n";
287
#endif
- return Read<T>(typename serializer_tag<T>::type());
288
+ return t;
289
}
290
291
/// Store the returned value in the index-to-object mapping.
0 commit comments