From eac3b65b00883ff8edaf0fbc4b973d5a3a9c455d Mon Sep 17 00:00:00 2001 From: Reed Kotler Date: Fri, 26 Oct 2012 16:18:19 +0000 Subject: git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166780 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/Mips/Mips16InstrInfo.td | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/Target/Mips/Mips16InstrInfo.td b/lib/Target/Mips/Mips16InstrInfo.td index 3721cc7ba0..feffddc02e 100644 --- a/lib/Target/Mips/Mips16InstrInfo.td +++ b/lib/Target/Mips/Mips16InstrInfo.td @@ -205,6 +205,11 @@ class FRR16_div_ins f, string asmstr, InstrItinClass itin> : FRR16 ; +class FUnaryRR16_ins f, string asmstr, InstrItinClass itin> : + FRR16 ; + + class FRR16_M_ins f, string asmstr, InstrItinClass itin> : FRR16 { // Purpose: Negate // To negate an integer value. // -def NegRxRy16: FRR16_ins<0b11101, "neg", IIAlu>; +def NegRxRy16: FUnaryRR16_ins<0b11101, "neg", IIAlu>; // // Format: NOT rx, ry MIPS16e // Purpose: Not // To complement an integer value // -def NotRxRy16: FRR16_ins<0b01111, "not", IIAlu>; +def NotRxRy16: FUnaryRR16_ins<0b01111, "not", IIAlu>; // // Format: OR rx, ry MIPS16e -- cgit v1.2.3