diff options
| author | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2017-05-30 10:15:16 +0000 |
|---|---|---|
| committer | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2017-05-30 10:15:16 +0000 |
| commit | 3f484e68cc6bf62ccff44c2cdb1a70aaf015d088 (patch) | |
| tree | c92128358732b94b1fda61ed46647e9486f2869c /llvm/lib/Target/SystemZ/SystemZSubtarget.cpp | |
| parent | f32adf6944dba793af335a1269f8a4173cd437c3 (diff) | |
| download | bcm5719-llvm-3f484e68cc6bf62ccff44c2cdb1a70aaf015d088.tar.gz bcm5719-llvm-3f484e68cc6bf62ccff44c2cdb1a70aaf015d088.zip | |
[SystemZ] Add decimal floating-point instructions
This adds assembler / disassembler support for the decimal
floating-point instructions. Since LLVM does not yet have
support for decimal float types, these cannot be used for
codegen at this point.
llvm-svn: 304203
Diffstat (limited to 'llvm/lib/Target/SystemZ/SystemZSubtarget.cpp')
| -rw-r--r-- | llvm/lib/Target/SystemZ/SystemZSubtarget.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp b/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp index 022679a7bc1..0ab0c2f2591 100644 --- a/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp +++ b/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp @@ -42,8 +42,10 @@ SystemZSubtarget::SystemZSubtarget(const Triple &TT, const std::string &CPU, HasMiscellaneousExtensions(false), HasExecutionHint(false), HasLoadAndTrap(false), HasTransactionalExecution(false), HasProcessorAssist(false), + HasDFPZonedConversion(false), HasVector(false), HasLoadStoreOnCond2(false), HasLoadAndZeroRightmostByte(false), HasMessageSecurityAssist5(false), + HasDFPPackedConversion(false), TargetTriple(TT), InstrInfo(initializeSubtargetDependencies(CPU, FS)), TLInfo(TM, *this), TSInfo(), FrameLowering() {} |

