diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-02 04:32:07 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-02 04:32:07 +0000 |
commit | 7ee0246f51c91e8b42793302eb157b570b1e43aa (patch) | |
tree | 5c3e5d7e82642ded0a2d087e40c8b7b5a691376a /llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp | |
parent | d39874e6ecfeb19b420b0d5116f12facab01de5a (diff) | |
download | llvm-7ee0246f51c91e8b42793302eb157b570b1e43aa.zip llvm-7ee0246f51c91e8b42793302eb157b570b1e43aa.tar.gz llvm-7ee0246f51c91e8b42793302eb157b570b1e43aa.tar.bz2 |
eliminate the TM argument to the TAI class, remove comment about supporting
solaris :)
llvm-svn: 77865
Diffstat (limited to 'llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp b/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp index 8c11a47..8bebf5b 100644 --- a/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp +++ b/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp @@ -24,8 +24,7 @@ extern "C" void LLVMInitializeSystemZTarget() { } const TargetAsmInfo *SystemZTargetMachine::createTargetAsmInfo() const { - // FIXME: Handle Solaris subtarget someday :) - return new SystemZTargetAsmInfo(*this); + return new SystemZTargetAsmInfo(); } /// SystemZTargetMachine ctor - Create an ILP64 architecture model |