diff options
| author | Simon Atanasyan <simon@atanasyan.com> | 2018-12-12 15:32:03 +0000 |
|---|---|---|
| committer | Simon Atanasyan <simon@atanasyan.com> | 2018-12-12 15:32:03 +0000 |
| commit | fa020082e4ebcf3cfd2d65558a4a153f6d9687e8 (patch) | |
| tree | 3f224f480aa4844158b11de506ab3c2dc2eb9ce6 /llvm/lib/Target/Mips | |
| parent | d8ccc0e3e43e6e98437972fc4757bf7918590e49 (diff) | |
| download | bcm5719-llvm-fa020082e4ebcf3cfd2d65558a4a153f6d9687e8.tar.gz bcm5719-llvm-fa020082e4ebcf3cfd2d65558a4a153f6d9687e8.zip | |
[mips] Enable using of integrated assembler in all cases.
llvm-svn: 348934
Diffstat (limited to 'llvm/lib/Target/Mips')
| -rw-r--r-- | llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp b/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp index 7bcda12051a..1506b4a8364 100644 --- a/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp +++ b/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp @@ -49,25 +49,5 @@ MipsMCAsmInfo::MipsMCAsmInfo(const Triple &TheTriple) { ExceptionsType = ExceptionHandling::DwarfCFI; DwarfRegNumForCFI = true; HasMipsExpressions = true; - - // Enable IAS by default for O32. - if (TheTriple.isMIPS32()) - UseIntegratedAssembler = true; - - // Enable IAS by default for Debian mips64/mips64el. - if (TheTriple.getEnvironment() == Triple::GNUABI64) - UseIntegratedAssembler = true; - - // Enable IAS by default for Debian mipsn32/mipsn32el. - if (TheTriple.getEnvironment() == Triple::GNUABIN32) - UseIntegratedAssembler = true; - - // Enable IAS by default for Android mips64el that uses N64 ABI. - if (TheTriple.getArch() == Triple::mips64el && TheTriple.isAndroid()) - UseIntegratedAssembler = true; - - // Enable IAS by default for FreeBSD / OpenBSD mips64/mips64el. - if (TheTriple.isOSFreeBSD() || - TheTriple.isOSOpenBSD()) - UseIntegratedAssembler = true; + UseIntegratedAssembler = true; } |

