commit | a9248a2696e66ed9a5bae14076f360b034f32b8a | [log] [tgz] |
---|---|---|
author | Lang Hames <lhames@gmail.com> | Thu Aug 27 18:54:41 2015 +0000 |
committer | Lang Hames <lhames@gmail.com> | Thu Aug 27 18:54:41 2015 +0000 |
tree | 24b66b4ac5573e32ead47389e29c031eef1e7417 | |
parent | 533fde9f4d6544116d04462fff2c64ab36348f0a [diff] [blame] |
Revert r246175 to get builder green again. llvm-svn: 246185
diff --git a/llvm/docs/tutorial/LangImpl4.rst b/llvm/docs/tutorial/LangImpl4.rst index 92dcc3d..702886f 100644 --- a/llvm/docs/tutorial/LangImpl4.rst +++ b/llvm/docs/tutorial/LangImpl4.rst
@@ -566,7 +566,7 @@ /// putchard - putchar that takes a double and returns 0. extern "C" double putchard(double X) { - fputc((char)X, stderr); + putchar((char)X); return 0; }