print indirect goto correctly

llvm-svn: 39122
This commit is contained in:
Chris Lattner 2006-11-05 01:51:06 +00:00
parent 16976d3e83
commit 36ad123dea
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ void StmtPrinter::VisitGotoStmt(GotoStmt *Node) {
}
void StmtPrinter::VisitIndirectGotoStmt(IndirectGotoStmt *Node) {
Indent() << "goto ";
Indent() << "goto *";
PrintExpr(Node->getTarget());
OS << "\n";
}