[llvm-commits] CVS: llvm/lib/CWriter/Writer.cpp

Chris Lattner lattner at cs.uiuc.edu
Mon Jun 16 07:22:00 PDT 2003


Changes in directory llvm/lib/CWriter:

Writer.cpp updated: 1.93 -> 1.94

---
Log message:

Fix typeo


---
Diffs of the changes:

Index: llvm/lib/CWriter/Writer.cpp
diff -u llvm/lib/CWriter/Writer.cpp:1.93 llvm/lib/CWriter/Writer.cpp:1.94
--- llvm/lib/CWriter/Writer.cpp:1.93	Mon Jun 16 07:09:09 2003
+++ llvm/lib/CWriter/Writer.cpp	Mon Jun 16 07:21:19 2003
@@ -303,8 +303,8 @@
       // Print it out literally if it is a printable character.  The only thing
       // to be careful about is when the last letter output was a hex escape
       // code, in which case we have to be careful not to print out hex digits
-      // explicitly (the C compiler things it is a continuation of the previous
-      // character, arg...)
+      // explicitly (the C compiler thinks it is a continuation of the previous
+      // character, sheesh...)
       //
       if (isprint(C) && (!LastWasHex || !isxdigit(C))) {
         LastWasHex = false;





More information about the llvm-commits mailing list