aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Debugger
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2005-04-21 20:39:54 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2005-04-21 20:39:54 +0000
commitea61c358720aa6c7a159d51658b34276316aa841 (patch)
tree75813cf25b4435bf1ce4ad1ccfa7c6d9ed52a64a /include/llvm/Debugger
parent9769ab22265b313171d201b5928688524a01bd87 (diff)
downloadexternal_llvm-ea61c358720aa6c7a159d51658b34276316aa841.zip
external_llvm-ea61c358720aa6c7a159d51658b34276316aa841.tar.gz
external_llvm-ea61c358720aa6c7a159d51658b34276316aa841.tar.bz2
Remove trailing whitespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21409 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Debugger')
-rw-r--r--include/llvm/Debugger/Debugger.h4
-rw-r--r--include/llvm/Debugger/InferiorProcess.h6
-rw-r--r--include/llvm/Debugger/ProgramInfo.h12
-rw-r--r--include/llvm/Debugger/RuntimeInfo.h8
-rw-r--r--include/llvm/Debugger/SourceFile.h12
-rw-r--r--include/llvm/Debugger/SourceLanguage.h4
6 files changed, 23 insertions, 23 deletions
diff --git a/include/llvm/Debugger/Debugger.h b/include/llvm/Debugger/Debugger.h
index 0d45187..e708bc0 100644
--- a/include/llvm/Debugger/Debugger.h
+++ b/include/llvm/Debugger/Debugger.h
@@ -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.
diff --git a/include/llvm/Debugger/InferiorProcess.h b/include/llvm/Debugger/InferiorProcess.h
index c3f3886..980e5cf 100644
--- a/include/llvm/Debugger/InferiorProcess.h
+++ b/include/llvm/Debugger/InferiorProcess.h
@@ -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 @@ namespace llvm {
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() {}
diff --git a/include/llvm/Debugger/ProgramInfo.h b/include/llvm/Debugger/ProgramInfo.h
index f7ee77d..b5f9402 100644
--- a/include/llvm/Debugger/ProgramInfo.h
+++ b/include/llvm/Debugger/ProgramInfo.h
@@ -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 @@ namespace llvm {
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 @@ namespace llvm {
/// 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 @@ namespace llvm {
/// 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 @@ namespace llvm {
/// 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.
//
diff --git a/include/llvm/Debugger/RuntimeInfo.h b/include/llvm/Debugger/RuntimeInfo.h
index 5e798e8..2f4d37a 100644
--- a/include/llvm/Debugger/RuntimeInfo.h
+++ b/include/llvm/Debugger/RuntimeInfo.h
@@ -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 @@ namespace llvm {
const SourceFileInfo *SourceInfo;
public:
StackFrame(RuntimeInfo &RI, void *ParentFrameID);
-
+
StackFrame &operator=(const StackFrame &RHS) {
FrameID = RHS.FrameID;
FunctionDesc = RHS.FunctionDesc;
@@ -80,7 +80,7 @@ namespace llvm {
/// 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.
diff --git a/include/llvm/Debugger/SourceFile.h b/include/llvm/Debugger/SourceFile.h
index 042350a..6d49fbe 100644
--- a/include/llvm/Debugger/SourceFile.h
+++ b/include/llvm/Debugger/SourceFile.h
@@ -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 @@ namespace llvm {
/// 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 @@ namespace llvm {
/// 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 @@ namespace llvm {
/// readFile - Load Filename into memory
///
void readFile();
-
+
/// calculateLineOffsets - Compute the LineOffset vector for the current
/// file.
void calculateLineOffsets() const;
diff --git a/include/llvm/Debugger/SourceLanguage.h b/include/llvm/Debugger/SourceLanguage.h
index 798e0fb..06f4381 100644
--- a/include/llvm/Debugger/SourceLanguage.h
+++ b/include/llvm/Debugger/SourceLanguage.h
@@ -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