From f624d1ab8dbcf2a10e4d02eba004bb1e877c159e Mon Sep 17 00:00:00 2001 From: Lang Hames Date: Thu, 27 Aug 2015 18:13:34 +0000 Subject: Add Kaleidoscope regression tests. These will be run if LLVM_BUILD_EXAMPLES is enabled. llvm-svn: 246175 --- llvm/docs/tutorial/LangImpl4.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/docs/tutorial') 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; } -- cgit v1.2.3