[llvm-commits] CVS: llvm/lib/AsmParser/Parser.cpp ParserInternals.h

Misha Brukman brukman at cs.uiuc.edu
Thu Apr 21 14:10:22 PDT 2005



Changes in directory llvm/lib/AsmParser:

Parser.cpp updated: 1.14 -> 1.15
ParserInternals.h updated: 1.39 -> 1.40
---
Log message:

* Remove trailing whitespace
* Convert tabs to spaces


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

 Parser.cpp        |   16 ++++++++--------
 ParserInternals.h |   14 +++++++-------
 2 files changed, 15 insertions(+), 15 deletions(-)


Index: llvm/lib/AsmParser/Parser.cpp
diff -u llvm/lib/AsmParser/Parser.cpp:1.14 llvm/lib/AsmParser/Parser.cpp:1.15
--- llvm/lib/AsmParser/Parser.cpp:1.14	Tue Jul 13 03:42:12 2004
+++ llvm/lib/AsmParser/Parser.cpp	Thu Apr 21 16:10:11 2005
@@ -1,10 +1,10 @@
 //===- Parser.cpp - Main dispatch module for the Parser library -------------===
-// 
+//
 //                     The LLVM Compiler Infrastructure
 //
 // This file was developed by the LLVM research group and is distributed under
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 // This library implements the functionality defined in llvm/assembly/parser.h
@@ -49,24 +49,24 @@
 
 
 ParseException::ParseException(const std::string &filename,
-                               const std::string &message, 
-			       int lineNo, int colNo) 
+                               const std::string &message,
+                               int lineNo, int colNo)
   : Filename(filename), Message(message) {
   LineNo = lineNo; ColumnNo = colNo;
 }
 
-ParseException::ParseException(const ParseException &E) 
+ParseException::ParseException(const ParseException &E)
   : Filename(E.Filename), Message(E.Message) {
   LineNo = E.LineNo;
   ColumnNo = E.ColumnNo;
 }
 
 // Includes info from options
-const std::string ParseException::getMessage() const { 
+const std::string ParseException::getMessage() const {
   std::string Result;
   char Buffer[10];
 
-  if (Filename == "-") 
+  if (Filename == "-")
     Result += "<stdin>";
   else
     Result += Filename;
@@ -79,6 +79,6 @@
       Result += std::string(",") + Buffer;
     }
   }
-  
+
   return Result + ": " + Message;
 }


Index: llvm/lib/AsmParser/ParserInternals.h
diff -u llvm/lib/AsmParser/ParserInternals.h:1.39 llvm/lib/AsmParser/ParserInternals.h:1.40
--- llvm/lib/AsmParser/ParserInternals.h:1.39	Sat Oct 16 13:17:13 2004
+++ llvm/lib/AsmParser/ParserInternals.h	Thu Apr 21 16:10:11 2005
@@ -1,13 +1,13 @@
 //===-- ParserInternals.h - Definitions internal to the parser --*- C++ -*-===//
-// 
+//
 //                     The LLVM Compiler Infrastructure
 //
 // This file was developed by the LLVM research group and is distributed under
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
-//  This header file defines the various variables that are shared among the 
+//  This header file defines the various variables that are shared among the
 //  different components of the parser...
 //
 //===----------------------------------------------------------------------===//
@@ -52,21 +52,21 @@
 // ThrowException - Wrapper around the ParseException class that automatically
 // fills in file line number and column number and options info.
 //
-// This also helps me because I keep typing 'throw new ParseException' instead 
+// This also helps me because I keep typing 'throw new ParseException' instead
 // of just 'throw ParseException'... sigh...
 //
 static inline void ThrowException(const std::string &message,
-				  int LineNo = -1) {
+                                  int LineNo = -1) {
   if (LineNo == -1) LineNo = llvmAsmlineno;
   // TODO: column number in exception
   throw ParseException(CurFilename, message, LineNo);
 }
 
 // ValID - Represents a reference of a definition of some sort.  This may either
-// be a numeric reference or a symbolic (%var) reference.  This is just a 
+// be a numeric reference or a symbolic (%var) reference.  This is just a
 // discriminated union.
 //
-// Note that I can't implement this class in a straight forward manner with 
+// Note that I can't implement this class in a straight forward manner with
 // constructors and stuff because it goes in a union.
 //
 struct ValID {






More information about the llvm-commits mailing list