This is the mail archive of the sid@sources.redhat.com mailing list for the SID project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

[patch]sid/component/cgen-cpu/cgen-ops.h


Hi,

I've commit this patch which adds (addc DI  op1 op1) capability to the
cgen rtl.

Dave
2001-07-27  Dave Brolley  <brolley@redhat.com>

	* cgen-ops.h (ADDCDI): New function.

Index: sid/component/cgen-cpu/cgen-ops.h
===================================================================
RCS file: /cvs/cvsfiles/devo/sid/component/cgen-cpu/cgen-ops.h,v
retrieving revision 1.18
diff -c -p -r1.18 cgen-ops.h
*** cgen-ops.h	2001/07/12 17:33:51	1.18
--- cgen-ops.h	2001/07/27 20:24:14
*************** ADDCSI (SI a, SI b, BI c)
*** 365,370 ****
--- 365,377 ----
    return res;
  }
  
+ inline DI
+ ADDCDI (DI a, DI b, DI c)
+ {
+   DI res = ADDDI (a, ADDDI (b, c));
+   return res;
+ }
+ 
  inline BI
  ADDCFQI (QI a, QI b, BI c)
  {

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]