[llvm-commits] CVS: llvm/utils/TableGen/FileLexer.l

Chris Lattner lattner at cs.uiuc.edu
Wed Oct 13 08:26:00 PDT 2004



Changes in directory llvm/utils/TableGen:

FileLexer.l updated: 1.22 -> 1.23
---
Log message:

Patch to make VS happier, thanks to Morten Ofstad for pointing this out.


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

Index: llvm/utils/TableGen/FileLexer.l
diff -u llvm/utils/TableGen/FileLexer.l:1.22 llvm/utils/TableGen/FileLexer.l:1.23
--- llvm/utils/TableGen/FileLexer.l:1.22	Thu May 27 12:44:18 2004
+++ llvm/utils/TableGen/FileLexer.l	Wed Oct 13 10:25:46 2004
@@ -147,7 +147,7 @@
 /// files. Switch back to an includer if an includee has run out of input.
 ///
 extern "C"
-int yywrap() {
+int yywrap(void) {
   if (IncludeStack.back().File != stdin)
     fclose(IncludeStack.back().File);
   IncludeStack.pop_back();






More information about the llvm-commits mailing list