diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2003-10-10 19:12:08 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-10-10 19:12:08 +0000 |
commit | bc127098889339e2f8005b62b903c935203316c3 (patch) | |
tree | 5ee4253a62c6f8ab899b21ca67b0a26fc13994cb /llvm/lib | |
parent | 56569e8a664a45fc15924b296e444b83cee20447 (diff) | |
download | bcm5719-llvm-bc127098889339e2f8005b62b903c935203316c3.tar.gz bcm5719-llvm-bc127098889339e2f8005b62b903c935203316c3.zip |
Include <cctype> and <cstdlib> instead of <ctype.h> and "Config/stdlib.h".
llvm-svn: 9036
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/AsmParser/Lexer.l | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/AsmParser/Lexer.l b/llvm/lib/AsmParser/Lexer.l index 0a9d2c3e8f9..6c03d029be9 100644 --- a/llvm/lib/AsmParser/Lexer.l +++ b/llvm/lib/AsmParser/Lexer.l @@ -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 |