commit | adb4dbaef3dd1bb68fac060a22cfced636771940 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Tue Oct 23 04:13:01 2001 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Tue Oct 23 04:13:01 2001 +0000 |
tree | 1c529cccbf156ac5c800ea77769adc2fffbc9df1 | |
parent | 7540328e4659641e1f275712188287ac76d5b6e9 [diff] |
Negative FP constants... whodathunkit. llvm-svn: 963
diff --git a/llvm/lib/AsmParser/Lexer.l b/llvm/lib/AsmParser/Lexer.l index e9996b2..b4910ec 100644 --- a/llvm/lib/AsmParser/Lexer.l +++ b/llvm/lib/AsmParser/Lexer.l
@@ -111,7 +111,7 @@ /* FPConstant - A Floating point constant. TODO: Expand lexer to support 10e50 FP constant notation */ -FPConstant [0-9]+[.][0-9]* +FPConstant -?[0-9]+[.][0-9]* %%