Recommit r246175 - Add Kaleidoscope regression tests, with a fix to make sure
[oota-llvm.git] / examples / Kaleidoscope / Chapter7 / toy.cpp
index be00f873e6d571f997d9ce7fe5a14d4229967acc..d61d880e5403b529cc62ff5c4d4a5106caf18ed5 100644 (file)
@@ -1189,13 +1189,13 @@ static void MainLoop() {
 //===----------------------------------------------------------------------===//
 
 /// putchard - putchar that takes a double and returns 0.
-extern "C" double putchard(double X) {
+__attribute__((used)) extern "C" double putchard(double X) {
   fputc((char)X, stderr);
   return 0;
 }
 
 /// printd - printf that takes a double prints it as "%f\n", returning 0.
-extern "C" double printd(double X) {
+__attribute__((used)) extern "C" double printd(double X) {
   fprintf(stderr, "%f\n", X);
   return 0;
 }