[llvm-commits] CVS: llvm/lib/AsmParser/Lexer.l
Brian Gaeke
gaeke at cs.uiuc.edu
Fri Oct 10 14:13:01 PDT 2003
Changes in directory llvm/lib/AsmParser:
Lexer.l updated: 1.39 -> 1.40
---
Log message:
Include <cctype> and <cstdlib> instead of <ctype.h> and "Config/stdlib.h".
---
Diffs of the changes: (+2 -2)
Index: llvm/lib/AsmParser/Lexer.l
diff -u llvm/lib/AsmParser/Lexer.l:1.39 llvm/lib/AsmParser/Lexer.l:1.40
--- llvm/lib/AsmParser/Lexer.l:1.39 Thu Oct 9 23:54:02 2003
+++ llvm/lib/AsmParser/Lexer.l Fri Oct 10 14:12:08 2003
@@ -22,8 +22,8 @@
#include "llvm/Module.h"
#include <list>
#include "llvmAsmParser.h"
-#include <ctype.h>
-#include "Config/stdlib.h"
+#include <cctype>
+#include <cstdlib>
#define RET_TOK(type, Enum, sym) \
llvmAsmlval.type = Instruction::Enum; return sym
More information about the llvm-commits
mailing list