summaryrefslogtreecommitdiffstats
path: root/llvm/docs/tutorial/LangImpl04.rst
diff options
context:
space:
mode:
authorMatthias Braun <matze@braunis.de>2017-01-28 02:47:46 +0000
committerMatthias Braun <matze@braunis.de>2017-01-28 02:47:46 +0000
commit25bcaba50eaa77cb4e59ea129664513ce7f8ed38 (patch)
tree1124531229248f488000c4d646de1e69f341f0e5 /llvm/docs/tutorial/LangImpl04.rst
parent95be17230856cd79de19d2f5637b081694154fcf (diff)
downloadbcm5719-llvm-25bcaba50eaa77cb4e59ea129664513ce7f8ed38.tar.gz
bcm5719-llvm-25bcaba50eaa77cb4e59ea129664513ce7f8ed38.zip
Use print() instead of dump() in code
The dump() functions are meant to be used in a debugger, code should typically use something like print(errs()); llvm-svn: 293365
Diffstat (limited to 'llvm/docs/tutorial/LangImpl04.rst')
-rw-r--r--llvm/docs/tutorial/LangImpl04.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/docs/tutorial/LangImpl04.rst b/llvm/docs/tutorial/LangImpl04.rst
index 78596cd8eee..513bf8f4ab4 100644
--- a/llvm/docs/tutorial/LangImpl04.rst
+++ b/llvm/docs/tutorial/LangImpl04.rst
@@ -458,7 +458,8 @@ We also need to update HandleDefinition and HandleExtern:
if (auto FnAST = ParseDefinition()) {
if (auto *FnIR = FnAST->codegen()) {
fprintf(stderr, "Read function definition:");
- FnIR->dump();
+ FnIR->print(errs());
+ fprintf(stderr, "\n");
TheJIT->addModule(std::move(TheModule));
InitializeModuleAndPassManager();
}
@@ -472,7 +473,8 @@ We also need to update HandleDefinition and HandleExtern:
if (auto ProtoAST = ParseExtern()) {
if (auto *FnIR = ProtoAST->codegen()) {
fprintf(stderr, "Read extern: ");
- FnIR->dump();
+ FnIR->print(errs());
+ fprintf(stderr, "\n");
FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST);
}
} else {
OpenPOWER on IntegriCloud