Index: sid.scm =================================================================== RCS file: /cvs/src/src/cgen/sid.scm,v retrieving revision 1.16 diff -c -p -r1.16 sid.scm *** sid.scm 28 Oct 2005 19:30:02 -0000 1.16 --- sid.scm 20 Jun 2006 19:48:15 -0000 *************** *** 170,186 **** ; Attribute support. - ; Return the C++ type to use to hold a value for attribute ATTR. - - (define (gen-attr-type attr) - (case (attr-kind attr) - ((boolean) "int") - ((bitset) "unsigned int") - ((integer) "int") - ((enum) (string-append "enum " (string-downcase (gen-sym attr)) "_attr")) - ) - ) - ; Return C code to fetch a value from instruction memory. ; PC-VAR is the C expression containing the address of the start of the ; instruction. --- 170,175 ----