mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 00:01:39 +00:00
Add printVersion(). Linker can use it to print LLVM version number.
llvm-svn: 33738
This commit is contained in:
parent
46a1a617f5
commit
c6531e1867
@ -96,6 +96,7 @@ namespace llvm {
|
||||
const char *) = 0;
|
||||
virtual void getTargetTriple(const std::string &, std::string &) = 0;
|
||||
virtual void removeModule (const std::string &InputFilename) = 0;
|
||||
virtual void printVersion () = 0;
|
||||
virtual ~LinkTimeOptimizer() = 0;
|
||||
};
|
||||
|
||||
@ -119,6 +120,7 @@ namespace llvm {
|
||||
void getTargetTriple(const std::string &InputFilename,
|
||||
std::string &targetTriple);
|
||||
void removeModule (const std::string &InputFilename);
|
||||
void printVersion();
|
||||
|
||||
// Constructors and destructors
|
||||
LTO() {
|
||||
|
@ -457,6 +457,10 @@ LTO::optimizeModules(const std::string &OutputFilename,
|
||||
return LTO_OPT_SUCCESS;
|
||||
}
|
||||
|
||||
void LTO::printVersion() {
|
||||
cl::PrintVersionMessage();
|
||||
}
|
||||
|
||||
/// Unused pure-virtual destructor. Must remain empty.
|
||||
LinkTimeOptimizer::~LinkTimeOptimizer() {}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user