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/gccas/gccas.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'tools/gccas') diff --git a/tools/gccas/gccas.cpp b/tools/gccas/gccas.cpp index 1192d6a..896b79a 100644 --- a/tools/gccas/gccas.cpp +++ b/tools/gccas/gccas.cpp @@ -1,10 +1,10 @@ //===-- gccas.cpp - The "optimizing assembler" used by the GCC frontend ---===// -// +// // 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 is designed to be used by the GCC frontend for creating bytecode @@ -33,11 +33,11 @@ namespace { cl::opt InputFilename(cl::Positional,cl::desc(""),cl::init("-")); - cl::opt + cl::opt OutputFilename("o", cl::desc("Override output filename"), cl::value_desc("filename")); - cl::opt + cl::opt Verify("verify", cl::desc("Verify each pass result")); cl::opt @@ -51,7 +51,7 @@ namespace { StripDebug("strip-debug", cl::desc("Strip debugger symbol info from translation unit")); - cl::opt + cl::opt NoCompress("disable-compression", cl::init(false), cl::desc("Don't compress the generated bytecode")); @@ -63,7 +63,7 @@ namespace { static inline void addPass(PassManager &PM, Pass *P) { // Add the pass to the pass manager... PM.add(P); - + // If we are verifying all of the intermediate steps, add the verifier... if (Verify) PM.add(createVerifierPass()); } @@ -128,7 +128,7 @@ void AddConfiguredTransformationPasses(PassManager &PM) { int main(int argc, char **argv) { try { - cl::ParseCommandLineOptions(argc, argv, + cl::ParseCommandLineOptions(argc, argv, " llvm .s -> .o assembler for GCC\n"); sys::PrintStackTraceOnErrorSignal(); @@ -175,7 +175,7 @@ int main(int argc, char **argv) { sys::RemoveFileOnSignal(sys::Path(OutputFilename)); } - + if (!Out->good()) { std::cerr << argv[0] << ": error opening " << OutputFilename << "!\n"; return 1; -- cgit v1.1