[llvm-commits] CVS: llvm/lib/AsmParser/Lexer.l Makefile

John Criswell criswell at cs.uiuc.edu
Mon Jun 30 17:04:03 PDT 2003


Changes in directory llvm/lib/AsmParser:

Lexer.l updated: 1.35 -> 1.36
Makefile updated: 1.2 -> 1.3

---
Log message:

Merged in autoconf branch.  This provides configuration via the autoconf
system.


---
Diffs of the changes:

Index: llvm/lib/AsmParser/Lexer.l
diff -u llvm/lib/AsmParser/Lexer.l:1.35 llvm/lib/AsmParser/Lexer.l:1.36
--- llvm/lib/AsmParser/Lexer.l:1.35	Sat Jun 28 15:01:34 2003
+++ llvm/lib/AsmParser/Lexer.l	Mon Jun 30 16:58:38 2003
@@ -23,7 +23,7 @@
 #include <list>
 #include "llvmAsmParser.h"
 #include <ctype.h>
-#include <stdlib.h>
+#include "Config/stdlib.h"
 
 #define RET_TOK(type, Enum, sym) \
   llvmAsmlval.type = Instruction::Enum; return sym


Index: llvm/lib/AsmParser/Makefile
diff -u llvm/lib/AsmParser/Makefile:1.2 llvm/lib/AsmParser/Makefile:1.3
--- llvm/lib/AsmParser/Makefile:1.2	Mon Apr  8 15:17:06 2002
+++ llvm/lib/AsmParser/Makefile	Mon Jun 30 16:58:38 2003
@@ -5,3 +5,9 @@
 
 include $(LEVEL)/Makefile.common
 
+#
+# Make the source code file for the lexer depend upon the header file generated
+# by the Bison parser.  This prevents the generation of dependencies from
+# being performed until after the header file has been created.
+#
+Lexer.cpp: llvmAsmParser.h





More information about the llvm-commits mailing list