diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-05-10 18:16:59 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-05-10 18:16:59 +0000 |
| commit | 6e53180db120b30f600ac31611a9dd47ef7f4921 (patch) | |
| tree | 92a7683fb8acea862a0383bac4093c81bb7a3446 /lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp | |
| parent | 50be71d18262ac9f27daef14b429d8132923f1df (diff) | |
| download | external_llvm-6e53180db120b30f600ac31611a9dd47ef7f4921.zip external_llvm-6e53180db120b30f600ac31611a9dd47ef7f4921.tar.gz external_llvm-6e53180db120b30f600ac31611a9dd47ef7f4921.tar.bz2 | |
Remove unused argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181618 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp')
| -rw-r--r-- | lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp b/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp index 49a7f47..6844f92 100644 --- a/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp +++ b/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp @@ -27,8 +27,8 @@ using namespace llvm; -static MCAsmInfo *createSystemZMCAsmInfo(const Target &T, StringRef TT) { - MCAsmInfo *MAI = new SystemZMCAsmInfo(T, TT); +static MCAsmInfo *createSystemZMCAsmInfo(StringRef TT) { + MCAsmInfo *MAI = new SystemZMCAsmInfo(TT); MachineLocation FPDst(MachineLocation::VirtualFP); MachineLocation FPSrc(SystemZ::R15D, -SystemZMC::CFAOffsetFromInitialSP); MAI->addInitialFrameState(0, FPDst, FPSrc); |
