[llvm-commits] CVS: llvm/include/llvm/Assembly/AsmAnnotationWriter.h CachedWriter.h Parser.h PrintModulePass.h Writer.h
Misha Brukman
brukman at cs.uiuc.edu
Thu Apr 21 13:19:16 PDT 2005
Changes in directory llvm/include/llvm/Assembly:
AsmAnnotationWriter.h updated: 1.3 -> 1.4
CachedWriter.h updated: 1.19 -> 1.20
Parser.h updated: 1.9 -> 1.10
PrintModulePass.h updated: 1.17 -> 1.18
Writer.h updated: 1.30 -> 1.31
---
Log message:
Remove trailing whitespace
---
Diffs of the changes: (+19 -19)
AsmAnnotationWriter.h | 6 +++---
CachedWriter.h | 4 ++--
Parser.h | 12 ++++++------
PrintModulePass.h | 10 +++++-----
Writer.h | 6 +++---
5 files changed, 19 insertions(+), 19 deletions(-)
Index: llvm/include/llvm/Assembly/AsmAnnotationWriter.h
diff -u llvm/include/llvm/Assembly/AsmAnnotationWriter.h:1.3 llvm/include/llvm/Assembly/AsmAnnotationWriter.h:1.4
--- llvm/include/llvm/Assembly/AsmAnnotationWriter.h:1.3 Mon Mar 8 12:51:05 2004
+++ llvm/include/llvm/Assembly/AsmAnnotationWriter.h Thu Apr 21 15:19:05 2005
@@ -1,10 +1,10 @@
//===-- AsmAnnotationWriter.h - Itf for annotation .ll files - --*- 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.
-//
+//
//===----------------------------------------------------------------------===//
//
// Clients of the assembly writer can use this interface to add their own
@@ -26,7 +26,7 @@
class Instruction;
struct AssemblyAnnotationWriter {
-
+
// emitFunctionAnnot - This may be implemented to emit a string right before
// the start of a function.
virtual void emitFunctionAnnot(const Function *F, std::ostream &OS) {}
Index: llvm/include/llvm/Assembly/CachedWriter.h
diff -u llvm/include/llvm/Assembly/CachedWriter.h:1.19 llvm/include/llvm/Assembly/CachedWriter.h:1.20
--- llvm/include/llvm/Assembly/CachedWriter.h:1.19 Wed Jul 14 21:51:18 2004
+++ llvm/include/llvm/Assembly/CachedWriter.h Thu Apr 21 15:19:05 2005
@@ -1,10 +1,10 @@
//===-- llvm/Assembly/CachedWriter.h - Printer Accellerator -----*- 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 file defines a 'CachedWriter' class that is used to accelerate printing
Index: llvm/include/llvm/Assembly/Parser.h
diff -u llvm/include/llvm/Assembly/Parser.h:1.9 llvm/include/llvm/Assembly/Parser.h:1.10
--- llvm/include/llvm/Assembly/Parser.h:1.9 Sat Jan 1 14:51:41 2005
+++ llvm/include/llvm/Assembly/Parser.h Thu Apr 21 15:19:05 2005
@@ -1,10 +1,10 @@
//===-- llvm/Assembly/Parser.h - Parser for VM assembly files ---*- 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.
-//
+//
//===----------------------------------------------------------------------===//
//
// These classes are implemented by the lib/AsmParser library.
@@ -38,12 +38,12 @@
//
class ParseException {
public:
- ParseException(const std::string &filename, const std::string &message,
+ ParseException(const std::string &filename, const std::string &message,
int LineNo = -1, int ColNo = -1);
ParseException(const ParseException &E);
- // getMessage - Return the message passed in at construction time plus extra
+ // getMessage - Return the message passed in at construction time plus extra
// information extracted from the options used to parse with...
//
const std::string getMessage() const;
@@ -57,8 +57,8 @@
}
// getErrorLocation - Return the line and column number of the error in the
- // input source file. The source filename can be derived from the
- // ParserOptions in effect. If positional information is not applicable,
+ // input source file. The source filename can be derived from the
+ // ParserOptions in effect. If positional information is not applicable,
// these will return a value of -1.
//
inline const void getErrorLocation(int &Line, int &Column) const {
Index: llvm/include/llvm/Assembly/PrintModulePass.h
diff -u llvm/include/llvm/Assembly/PrintModulePass.h:1.17 llvm/include/llvm/Assembly/PrintModulePass.h:1.18
--- llvm/include/llvm/Assembly/PrintModulePass.h:1.17 Sun Sep 19 23:42:31 2004
+++ llvm/include/llvm/Assembly/PrintModulePass.h Thu Apr 21 15:19:05 2005
@@ -1,10 +1,10 @@
//===- llvm/Assembly/PrintModulePass.h - Printing Pass ----------*- 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 file defines two passes to print out a module. The PrintModulePass pass
@@ -36,7 +36,7 @@
~PrintModulePass() {
if (DeleteStream) delete Out;
}
-
+
bool runOnModule(Module &M) {
(*Out) << M << std::flush;
return false;
@@ -61,7 +61,7 @@
inline ~PrintFunctionPass() {
if (DeleteStream) delete Out;
}
-
+
// runOnFunction - This pass just prints a banner followed by the function as
// it's processed.
//
@@ -69,7 +69,7 @@
(*Out) << Banner << (Value&)F;
return false;
}
-
+
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
AU.setPreservesAll();
}
Index: llvm/include/llvm/Assembly/Writer.h
diff -u llvm/include/llvm/Assembly/Writer.h:1.30 llvm/include/llvm/Assembly/Writer.h:1.31
--- llvm/include/llvm/Assembly/Writer.h:1.30 Sun Jul 4 05:59:05 2004
+++ llvm/include/llvm/Assembly/Writer.h Thu Apr 21 15:19:05 2005
@@ -1,10 +1,10 @@
//===-- llvm/Assembly/Writer.h - Printer for LLVM assembly files --*- 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 functionality is implemented by lib/VMCore/AsmWriter.cpp.
@@ -34,7 +34,7 @@
// WriteAsOperand - Write the name of the specified value out to the specified
// ostream. This can be useful when you just want to print int %reg126, not the
// whole instruction that generated it. If you specify a Module for context,
-// then even constants get pretty-printed; for example, the type of a null
+// then even constants get pretty-printed; for example, the type of a null
// pointer is printed symbolically.
//
std::ostream &WriteAsOperand(std::ostream &, const Value *, bool PrintTy = true,
More information about the llvm-commits
mailing list