[llvm-commits] [llvm] r85296 - /llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp

Chris Lattner sabre at nondot.org
Tue Oct 27 13:42:56 PDT 2009


Author: lattner
Date: Tue Oct 27 15:42:54 2009
New Revision: 85296

URL: http://llvm.org/viewvc/llvm-project?rev=85296&view=rev
Log:
don't use stdio

Modified:
    llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp

Modified: llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp?rev=85296&r1=85295&r2=85296&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp Tue Oct 27 15:42:54 2009
@@ -2132,7 +2132,7 @@
 }
 
 void SelectionDAGLowering::visitIndBr(IndBrInst &I) {
-  fprintf(stderr, "indbr codegen not implemented yet");
+  errs() << "indbr codegen not implemented yet!\n";
   abort();
 }
 





More information about the llvm-commits mailing list