diff options
author | Chris Lattner <sabre@nondot.org> | 2006-09-03 18:44:02 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-09-03 18:44:02 +0000 |
commit | 0fc4541c67b11924bf1f1c1f7445d137f5fd474a (patch) | |
tree | 4e385c1ffb3ee83e59bdd25fc9901ed04273a95a /llvm/lib/Target/Alpha/AlphaTargetMachine.cpp | |
parent | 2ecd34e869dbc72a07242010af5d5d9185d46153 (diff) | |
download | bcm5719-llvm-0fc4541c67b11924bf1f1c1f7445d137f5fd474a.tar.gz bcm5719-llvm-0fc4541c67b11924bf1f1c1f7445d137f5fd474a.zip |
Simplify target construction.
llvm-svn: 30070
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 427094c9553..2d7e467815d 100644 --- a/llvm/lib/Target/Alpha/AlphaTargetMachine.cpp +++ b/llvm/lib/Target/Alpha/AlphaTargetMachine.cpp @@ -54,7 +54,7 @@ unsigned AlphaTargetMachine::getJITMatchQuality() { } AlphaTargetMachine::AlphaTargetMachine(const Module &M, const std::string &FS) - : TargetMachine("alpha"), DataLayout("e"), + : DataLayout("e"), FrameInfo(TargetFrameInfo::StackGrowsDown, 16, 0), JITInfo(*this), Subtarget(M, FS) |