From: Duraid Madina Date: Wed, 6 Apr 2005 09:54:09 +0000 (+0000) Subject: add fms instruction X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b366a02ff23ac1efee6833da53a7a2b7cea7fb1b;p=oota-llvm.git add fms instruction git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21112 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/IA64/IA64InstrInfo.td b/lib/Target/IA64/IA64InstrInfo.td index 2b8dfefd297..1c8858171cc 100644 --- a/lib/Target/IA64/IA64InstrInfo.td +++ b/lib/Target/IA64/IA64InstrInfo.td @@ -226,6 +226,8 @@ def FMOV : AForm<0x03, 0x0b, (ops FP:$dst, FP:$src), "mov $dst = $src;;">; // XXX: there _is_ no fmov def FMA : AForm<0x03, 0x0b, (ops FP:$dst, FP:$src1, FP:$src2, FP:$src3), "fma $dst = $src1, $src2, $src3;;">; +def FMS : AForm<0x03, 0x0b, (ops FP:$dst, FP:$src1, FP:$src2, FP:$src3), + "fms $dst = $src1, $src2, $src3;;">; def FNMA : AForm<0x03, 0x0b, (ops FP:$dst, FP:$src1, FP:$src2, FP:$src3), "fnma $dst = $src1, $src2, $src3;;">; def FABS : AForm<0x03, 0x0b, (ops FP:$dst, FP:$src),