diff options
Diffstat (limited to 'llvm/lib/Target/SystemZ')
-rw-r--r-- | llvm/lib/Target/SystemZ/SystemZTargetAsmInfo.cpp | 3 | ||||
-rw-r--r-- | llvm/lib/Target/SystemZ/SystemZTargetAsmInfo.h | 2 |
2 files changed, 2 insertions, 3 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"; diff --git a/llvm/lib/Target/SystemZ/SystemZTargetAsmInfo.h b/llvm/lib/Target/SystemZ/SystemZTargetAsmInfo.h index 98b50d49784..e7bf8954f64 100644 --- a/llvm/lib/Target/SystemZ/SystemZTargetAsmInfo.h +++ b/llvm/lib/Target/SystemZ/SystemZTargetAsmInfo.h @@ -21,7 +21,7 @@ namespace llvm { // Forward declaration. class SystemZTargetMachine; - struct SystemZTargetAsmInfo : public ELFTargetAsmInfo { + struct SystemZTargetAsmInfo : public TargetAsmInfo { explicit SystemZTargetAsmInfo(const SystemZTargetMachine &TM); }; |