diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-11 20:42:37 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-11 20:42:37 +0000 |
commit | 2c30970b22112b0fe7a603005ea2b26d11e69b95 (patch) | |
tree | 1786cb56b4ad655f84cbd240b3f8f9a3092644d1 /llvm/lib/Target/Alpha/AlphaTargetMachine.cpp | |
parent | 67e5ea2726877a05a94d10df3cb0b01a1d799778 (diff) | |
download | bcm5719-llvm-2c30970b22112b0fe7a603005ea2b26d11e69b95.tar.gz bcm5719-llvm-2c30970b22112b0fe7a603005ea2b26d11e69b95.zip |
pass the TargetTriple down from each target ctor to the
LLVMTargetMachine ctor. It is currently unused.
llvm-svn: 78711
Diffstat (limited to 'llvm/lib/Target/Alpha/AlphaTargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/Alpha/AlphaTargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Alpha/AlphaTargetMachine.cpp b/llvm/lib/Target/Alpha/AlphaTargetMachine.cpp index 5c61b6d7c55..bb140dca923 100644 --- a/llvm/lib/Target/Alpha/AlphaTargetMachine.cpp +++ b/llvm/lib/Target/Alpha/AlphaTargetMachine.cpp @@ -31,7 +31,7 @@ const TargetAsmInfo *AlphaTargetMachine::createTargetAsmInfo() const { AlphaTargetMachine::AlphaTargetMachine(const Target &T, const std::string &TT, const std::string &FS) - : LLVMTargetMachine(T), + : LLVMTargetMachine(T, TT), DataLayout("e-f128:128:128"), FrameInfo(TargetFrameInfo::StackGrowsDown, 16, 0), JITInfo(*this), |