[llvm] r228254 - Fixup.

Sean Silva chisophugis at gmail.com
Wed Feb 4 17:13:47 PST 2015


Author: silvas
Date: Wed Feb  4 19:13:47 2015
New Revision: 228254

URL: http://llvm.org/viewvc/llvm-project?rev=228254&view=rev
Log:
Fixup.

Didn't see these calls in my release build locally when testing.

Modified:
    llvm/trunk/lib/MC/MCInst.cpp

Modified: llvm/trunk/lib/MC/MCInst.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/MC/MCInst.cpp?rev=228254&r1=228253&r2=228254&view=diff
==============================================================================
--- llvm/trunk/lib/MC/MCInst.cpp (original)
+++ llvm/trunk/lib/MC/MCInst.cpp Wed Feb  4 19:13:47 2015
@@ -34,7 +34,7 @@ void MCOperand::print(raw_ostream &OS) c
 
 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
 void MCOperand::dump() const {
-  print(dbgs(), nullptr);
+  print(dbgs());
   dbgs() << "\n";
 }
 #endif
@@ -65,7 +65,7 @@ void MCInst::dump_pretty(raw_ostream &OS
 
 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
 void MCInst::dump() const {
-  print(dbgs(), nullptr);
+  print(dbgs());
   dbgs() << "\n";
 }
 #endif





More information about the llvm-commits mailing list