aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2005-04-20 04:07:47 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2005-04-20 04:07:47 +0000
commit8f586ba4ed5fa7aea0323254b2c5b6572b0a0869 (patch)
tree13c394bb3bbce3e3f3e0e122d2de6518458e36de
parent4619c75f640f0e47ec6b9f9253f95e4b40aad378 (diff)
Consistently eschew space between `*' or `&' and function argument name
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21371 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/gccld/gccld.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/tools/gccld/gccld.h b/tools/gccld/gccld.h
index 85dfb2d5c5..ef125bb44c 100644
--- a/tools/gccld/gccld.h
+++ b/tools/gccld/gccld.h
@@ -21,15 +21,15 @@
namespace llvm {
int
-GenerateBytecode (Module * M,
+GenerateBytecode (Module *M,
int StripLevel,
bool Internalize,
- std::ostream * Out);
+ std::ostream *Out);
int
-GenerateAssembly (const std::string & OutputFilename,
- const std::string & InputFilename,
- const sys::Path & llc,
+GenerateAssembly (const std::string &OutputFilename,
+ const std::string &InputFilename,
+ const sys::Path &llc,
bool Verbose=false);
int
@@ -38,15 +38,15 @@ GenerateCFile (const std::string &OutputFile,
const sys::Path &llc,
bool Verbose=false);
int
-GenerateNative (const std::string & OutputFilename,
- const std::string & InputFilename,
- const std::vector<std::string> & LibPaths,
- const std::vector<std::string> & Libraries,
- const sys::Path & gcc,
+GenerateNative (const std::string &OutputFilename,
+ const std::string &InputFilename,
+ const std::vector<std::string> &LibPaths,
+ const std::vector<std::string> &Libraries,
+ const sys::Path &gcc,
char ** const envp,
bool Shared,
- const std::string & RPath,
- const std::string & SOName,
+ const std::string &RPath,
+ const std::string &SOName,
bool Verbose=false);
} // End llvm namespace