diff options
author | Cristian Cadar <cristic@cs.stanford.edu> | 2011-07-24 23:34:38 +0000 |
---|---|---|
committer | Cristian Cadar <cristic@cs.stanford.edu> | 2011-07-24 23:34:38 +0000 |
commit | a0f86b88094721fb3b9118916e9314cdc180f1a9 (patch) | |
tree | 3d15c48b88c2eb2bb2a79a1861bfb7be951f9384 /lib/Expr/Lexer.cpp | |
parent | 9e830a45f39118a68e0bde690062af85ab3a2a8e (diff) | |
download | klee-a0f86b88094721fb3b9118916e9314cdc180f1a9.tar.gz |
Applied patch by Leandro Sales that makes Kleaver compatible with the
recent changes to array names. Modified FastCexSolver.pc to catch this issue. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@135896 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Expr/Lexer.cpp')
-rw-r--r-- | lib/Expr/Lexer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Expr/Lexer.cpp b/lib/Expr/Lexer.cpp index 84e2c185..95d6072b 100644 --- a/lib/Expr/Lexer.cpp +++ b/lib/Expr/Lexer.cpp @@ -61,7 +61,7 @@ void Token::dump() { /// static inline bool isInternalIdentifierChar(int Char) { - return isalnum(Char) || Char == '_' || Char == '.'; + return isalnum(Char) || Char == '_' || Char == '.' || Char == '-'; } Lexer::Lexer(const llvm::MemoryBuffer *MB) |