diff options
author | Lang Hames <lhames@gmail.com> | 2015-08-27 18:13:34 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2015-08-27 18:13:34 +0000 |
commit | f624d1ab8dbcf2a10e4d02eba004bb1e877c159e (patch) | |
tree | 5c69726f8e92f323dc252ba1dae96df65a751c69 /llvm/docs/tutorial | |
parent | f8144ab44fba3ef25701ccc3ef9a0f8cae1b9c3b (diff) | |
download | bcm5719-llvm-f624d1ab8dbcf2a10e4d02eba004bb1e877c159e.tar.gz bcm5719-llvm-f624d1ab8dbcf2a10e4d02eba004bb1e877c159e.zip |
Add Kaleidoscope regression tests.
These will be run if LLVM_BUILD_EXAMPLES is enabled.
llvm-svn: 246175
Diffstat (limited to 'llvm/docs/tutorial')
-rw-r--r-- | llvm/docs/tutorial/LangImpl4.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/tutorial/LangImpl4.rst b/llvm/docs/tutorial/LangImpl4.rst index 702886f6aec..92dcc3d33a0 100644 --- a/llvm/docs/tutorial/LangImpl4.rst +++ b/llvm/docs/tutorial/LangImpl4.rst @@ -566,7 +566,7 @@ if we add: /// putchard - putchar that takes a double and returns 0. extern "C" double putchard(double X) { - putchar((char)X); + fputc((char)X, stderr); return 0; } |