diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-02 04:27:24 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-02 04:27:24 +0000 |
commit | b25afe081c87d79458bd8a6b26a711a8b9f4fd0c (patch) | |
tree | 85c69ba3a42dfebe2f62b6d05f6eef443695c10e /llvm/lib/Target/SystemZ/SystemZTargetAsmInfo.cpp | |
parent | 44616ce31736622b157db9a04c5321660ae08614 (diff) | |
download | bcm5719-llvm-b25afe081c87d79458bd8a6b26a711a8b9f4fd0c.tar.gz bcm5719-llvm-b25afe081c87d79458bd8a6b26a711a8b9f4fd0c.zip |
remove TargetAsmInfo::TM, which is now dead. The basic TAI class now
no longer depends on TM!
llvm-svn: 77863
Diffstat (limited to 'llvm/lib/Target/SystemZ/SystemZTargetAsmInfo.cpp')
-rw-r--r-- | llvm/lib/Target/SystemZ/SystemZTargetAsmInfo.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Target/SystemZ/SystemZTargetAsmInfo.cpp b/llvm/lib/Target/SystemZ/SystemZTargetAsmInfo.cpp index 2f17676eef0..25877f8da8b 100644 --- a/llvm/lib/Target/SystemZ/SystemZTargetAsmInfo.cpp +++ b/llvm/lib/Target/SystemZ/SystemZTargetAsmInfo.cpp @@ -16,8 +16,7 @@ using namespace llvm; -SystemZTargetAsmInfo::SystemZTargetAsmInfo(const SystemZTargetMachine &TM) - : ELFTargetAsmInfo(TM) { +SystemZTargetAsmInfo::SystemZTargetAsmInfo(const SystemZTargetMachine &TM) { AlignmentIsInBytes = true; PrivateGlobalPrefix = ".L"; |