From 3da94aec4d429b2ba0f65fa040c33650cade196b Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Fri, 22 Apr 2005 00:00:37 +0000 Subject: Remove trailing whitespace git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21428 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvm-db/llvm-db.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tools/llvm-db/llvm-db.cpp') diff --git a/tools/llvm-db/llvm-db.cpp b/tools/llvm-db/llvm-db.cpp index f7913df..140b8e4 100644 --- a/tools/llvm-db/llvm-db.cpp +++ b/tools/llvm-db/llvm-db.cpp @@ -1,10 +1,10 @@ //===- llvm-db.cpp - LLVM Debugger ----------------------------------------===// -// +// // 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 utility implements a simple text-mode front-end to the LLVM debugger @@ -35,7 +35,7 @@ namespace { cl::desc("Add directory to the search for source files")); cl::alias SDA("d", cl::desc("Alias for --directory"), cl::aliasopt(SourceDirectories)); - + cl::opt WorkingDirectory("cd", cl::desc("Use directory as current working directory"), cl::value_desc("directory")); @@ -73,7 +73,7 @@ int main(int argc, char **argv, char * const *envp) { Dbg.setWorkingDirectory(WorkingDirectory); for (unsigned i = 0, e = SourceDirectories.size(); i != e; ++i) D.addSourceDirectory(SourceDirectories[i]); - + if (!InputArgs.empty()) { try { D.fileCommand(InputArgs[0]); -- cgit v1.1