[llvm-commits] [llvm] r73879 - /llvm/trunk/tools/llvm-mc/AsmLexer.cpp

Duncan Sands baldrick at free.fr
Sun Jun 21 23:59:32 PDT 2009


Author: baldrick
Date: Mon Jun 22 01:59:32 2009
New Revision: 73879

URL: http://llvm.org/viewvc/llvm-project?rev=73879&view=rev
Log:
Include cstdio to get EOF, needed with gcc-4.4.

Modified:
    llvm/trunk/tools/llvm-mc/AsmLexer.cpp

Modified: llvm/trunk/tools/llvm-mc/AsmLexer.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-mc/AsmLexer.cpp?rev=73879&r1=73878&r2=73879&view=diff

==============================================================================
--- llvm/trunk/tools/llvm-mc/AsmLexer.cpp (original)
+++ llvm/trunk/tools/llvm-mc/AsmLexer.cpp Mon Jun 22 01:59:32 2009
@@ -15,6 +15,7 @@
 #include "llvm/Support/SourceMgr.h"
 #include "llvm/Support/MemoryBuffer.h"
 #include <cerrno>
+#include <cstdio>
 #include <cstdlib>
 using namespace llvm;
 
@@ -254,4 +255,4 @@
   // Forward/backward labels: [0-9][fb]
   // Integers, fp constants, character constants.
   }
-}
\ No newline at end of file
+}





More information about the llvm-commits mailing list