[llvm-commits] CVS: llvm/tools/gccld/gccld.h
Misha Brukman
brukman at cs.uiuc.edu
Tue Apr 19 21:07:57 PDT 2005
Changes in directory llvm/tools/gccld:
gccld.h updated: 1.14 -> 1.15
---
Log message:
Consistently eschew space between `*' or `&' and function argument name
---
Diffs of the changes: (+12 -12)
gccld.h | 24 ++++++++++++------------
1 files changed, 12 insertions(+), 12 deletions(-)
Index: llvm/tools/gccld/gccld.h
diff -u llvm/tools/gccld/gccld.h:1.14 llvm/tools/gccld/gccld.h:1.15
--- llvm/tools/gccld/gccld.h:1.14 Tue Apr 19 22:22:18 2005
+++ llvm/tools/gccld/gccld.h Tue Apr 19 23:07:47 2005
@@ -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 @@
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
More information about the llvm-commits
mailing list