[llvm-commits] CVS: llvm/projects/Stacker/lib/compiler/Lexer.l

Chris Lattner lattner at cs.uiuc.edu
Thu May 27 13:32:02 PDT 2004


Changes in directory llvm/projects/Stacker/lib/compiler:

Lexer.l updated: 1.3 -> 1.4

---
Log message:

Add support for dos-style files


---
Diffs of the changes:  (+1 -1)

Index: llvm/projects/Stacker/lib/compiler/Lexer.l
diff -u llvm/projects/Stacker/lib/compiler/Lexer.l:1.3 llvm/projects/Stacker/lib/compiler/Lexer.l:1.4
--- llvm/projects/Stacker/lib/compiler/Lexer.l:1.3	Sun May  9 18:20:19 2004
+++ llvm/projects/Stacker/lib/compiler/Lexer.l	Thu May 27 13:28:32 2004
@@ -71,7 +71,7 @@
 /* You can also embed them in ( ... ) */
 Comment2	\(.*\)
 /* We ignore white space */
-White		[ \t\n]
+White		[ \t\r\n]
 
 /* jdentifiers start with a % sign */
 Identifier  	[A-Za-z][-A-Za-z0-9_]*





More information about the llvm-commits mailing list