diff options
author | Chris Lattner <sabre@nondot.org> | 2009-10-27 20:42:54 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-10-27 20:42:54 +0000 |
commit | 26076a8f102c5e2a8dbb91f9d1f64a7fbb7be5c8 (patch) | |
tree | 04825dc12365aa9b8362b21d3f90314080a87e4f /llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp | |
parent | 4567db45b8efa292a72c4c73bc74794a84a02658 (diff) | |
download | bcm5719-llvm-26076a8f102c5e2a8dbb91f9d1f64a7fbb7be5c8.tar.gz bcm5719-llvm-26076a8f102c5e2a8dbb91f9d1f64a7fbb7be5c8.zip |
don't use stdio
llvm-svn: 85296
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp index 73c9c5f57ec..59357aeff2a 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp @@ -2132,7 +2132,7 @@ void SelectionDAGLowering::visitSwitch(SwitchInst &SI) { } void SelectionDAGLowering::visitIndBr(IndBrInst &I) { - fprintf(stderr, "indbr codegen not implemented yet"); + errs() << "indbr codegen not implemented yet!\n"; abort(); } |