[llvm-commits] CVS: llvm/include/llvm/Debugger/Debugger.h InferiorProcess.h ProgramInfo.h RuntimeInfo.h SourceFile.h SourceLanguage.h

Misha Brukman brukman at cs.uiuc.edu
Thu Apr 21 13:39:49 PDT 2005



Changes in directory llvm/include/llvm/Debugger:

Debugger.h updated: 1.2 -> 1.3
InferiorProcess.h updated: 1.1 -> 1.2
ProgramInfo.h updated: 1.3 -> 1.4
RuntimeInfo.h updated: 1.2 -> 1.3
SourceFile.h updated: 1.2 -> 1.3
SourceLanguage.h updated: 1.1 -> 1.2
---
Log message:

Remove trailing whitespace


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

 Debugger.h        |    4 ++--
 InferiorProcess.h |    6 +++---
 ProgramInfo.h     |   12 ++++++------
 RuntimeInfo.h     |    8 ++++----
 SourceFile.h      |   12 ++++++------
 SourceLanguage.h  |    4 ++--
 6 files changed, 23 insertions(+), 23 deletions(-)


Index: llvm/include/llvm/Debugger/Debugger.h
diff -u llvm/include/llvm/Debugger/Debugger.h:1.2 llvm/include/llvm/Debugger/Debugger.h:1.3
--- llvm/include/llvm/Debugger/Debugger.h:1.2	Mon Jan  5 23:31:57 2004
+++ llvm/include/llvm/Debugger/Debugger.h	Thu Apr 21 15:39:38 2005
@@ -1,10 +1,10 @@
 //===- Debugger.h - LLVM debugger library interface -------------*- 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 the LLVM source-level debugger library interface.


Index: llvm/include/llvm/Debugger/InferiorProcess.h
diff -u llvm/include/llvm/Debugger/InferiorProcess.h:1.1 llvm/include/llvm/Debugger/InferiorProcess.h:1.2
--- llvm/include/llvm/Debugger/InferiorProcess.h:1.1	Sun Jan  4 23:23:38 2004
+++ llvm/include/llvm/Debugger/InferiorProcess.h	Thu Apr 21 15:39:38 2005
@@ -1,10 +1,10 @@
 //===- InferiorProcess.h - Represent the program being debugged -*- 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 the InferiorProcess class, which is used to represent,
@@ -59,7 +59,7 @@
     static InferiorProcess *create(Module *M,
                                    const std::vector<std::string> &Arguments,
                                    const char * const *envp);
-    
+
     // InferiorProcess destructor - Kill the current process.  If something
     // terrible happens, we throw an exception from the destructor.
     virtual ~InferiorProcess() {}


Index: llvm/include/llvm/Debugger/ProgramInfo.h
diff -u llvm/include/llvm/Debugger/ProgramInfo.h:1.3 llvm/include/llvm/Debugger/ProgramInfo.h:1.4
--- llvm/include/llvm/Debugger/ProgramInfo.h:1.3	Mon Dec 13 11:01:53 2004
+++ llvm/include/llvm/Debugger/ProgramInfo.h	Thu Apr 21 15:39:38 2005
@@ -1,10 +1,10 @@
 //===- ProgramInfo.h - Information about the loaded program -----*- 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 various pieces of information about the currently loaded
@@ -70,7 +70,7 @@
   public:
     SourceFileInfo(const GlobalVariable *Desc, const SourceLanguage &Lang);
     ~SourceFileInfo();
-    
+
     const std::string &getBaseName() const { return BaseName; }
     const std::string &getDirectory() const { return Directory; }
     unsigned getDebugVersion() const { return Version; }
@@ -149,7 +149,7 @@
     /// with the program, through the getSourceFileFromDesc method.  If ALL of
     /// the source files are needed, the getSourceFiles() method scans the
     /// entire program looking for them.
-    /// 
+    ///
     std::multimap<std::string, SourceFileInfo*> SourceFileIndex;
 
     /// SourceFunctions - This map contains entries functions in the source
@@ -163,7 +163,7 @@
     /// effectively a small map from the languages that are active in the
     /// program to their caches.  This can be accessed by the language by the
     /// "getLanguageCache" method.
-    std::vector<std::pair<const SourceLanguage*, 
+    std::vector<std::pair<const SourceLanguage*,
                           SourceLanguageCache*> > LanguageCaches;
   public:
     ProgramInfo(Module *m);
@@ -172,7 +172,7 @@
     /// getProgramTimeStamp - Return the time-stamp of the program when it was
     /// loaded.
     sys::TimeValue getProgramTimeStamp() const { return ProgramTimeStamp; }
-    
+
     //===------------------------------------------------------------------===//
     // Interfaces to the source code files that make up the program.
     //


Index: llvm/include/llvm/Debugger/RuntimeInfo.h
diff -u llvm/include/llvm/Debugger/RuntimeInfo.h:1.2 llvm/include/llvm/Debugger/RuntimeInfo.h:1.3
--- llvm/include/llvm/Debugger/RuntimeInfo.h:1.2	Sun Jan  4 23:45:04 2004
+++ llvm/include/llvm/Debugger/RuntimeInfo.h	Thu Apr 21 15:39:38 2005
@@ -1,10 +1,10 @@
 //===- RuntimeInfo.h - Information about running program --------*- 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 classes that capture various pieces of information about
@@ -42,7 +42,7 @@
     const SourceFileInfo *SourceInfo;
   public:
     StackFrame(RuntimeInfo &RI, void *ParentFrameID);
-    
+
     StackFrame &operator=(const StackFrame &RHS) {
       FrameID = RHS.FrameID;
       FunctionDesc = RHS.FunctionDesc;
@@ -80,7 +80,7 @@
     /// CallStack - This caches information about the current stack trace of the
     /// program.  This is lazily computed as needed.
     std::vector<StackFrame> CallStack;
-    
+
     /// CurrentFrame - The user can traverse the stack frame with the
     /// up/down/frame family of commands.  This index indicates the current
     /// stack frame.


Index: llvm/include/llvm/Debugger/SourceFile.h
diff -u llvm/include/llvm/Debugger/SourceFile.h:1.2 llvm/include/llvm/Debugger/SourceFile.h:1.3
--- llvm/include/llvm/Debugger/SourceFile.h:1.2	Sun Dec 12 20:58:40 2004
+++ llvm/include/llvm/Debugger/SourceFile.h	Thu Apr 21 15:39:38 2005
@@ -1,10 +1,10 @@
 //===- SourceFile.h - Class to represent a source code file -----*- 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 the SourceFile class which is used to represent a single
@@ -60,11 +60,11 @@
     /// getDescriptor - Return the debugging decriptor for this source file.
     ///
     const GlobalVariable *getDescriptor() const { return Descriptor; }
-    
+
     /// getFilename - Return the fully resolved path that this file was loaded
     /// from.
     const std::string &getFilename() const { return Filename.toString(); }
-    
+
     /// getSourceLine - Given a line number, return the start and end of the
     /// line in the file.  If the line number is invalid, or if the file could
     /// not be loaded, null pointers are returned for the start and end of the
@@ -72,7 +72,7 @@
     /// any newlines from the end of the line, to ease formatting of the text.
     void getSourceLine(unsigned LineNo, const char *&LineStart,
                        const char *&LineEnd) const;
-  
+
     /// getNumLines - Return the number of lines the source file contains.
     ///
     unsigned getNumLines() const {
@@ -84,7 +84,7 @@
     /// readFile - Load Filename into memory
     ///
     void readFile();
-    
+
     /// calculateLineOffsets - Compute the LineOffset vector for the current
     /// file.
     void calculateLineOffsets() const;


Index: llvm/include/llvm/Debugger/SourceLanguage.h
diff -u llvm/include/llvm/Debugger/SourceLanguage.h:1.1 llvm/include/llvm/Debugger/SourceLanguage.h:1.2
--- llvm/include/llvm/Debugger/SourceLanguage.h:1.1	Sun Jan  4 23:23:38 2004
+++ llvm/include/llvm/Debugger/SourceLanguage.h	Thu Apr 21 15:39:38 2005
@@ -1,10 +1,10 @@
 //===- SourceLanguage.h - Interact with source languages --------*- 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 the abstract SourceLanguage interface, which is used by the






More information about the llvm-commits mailing list