Index: cgen/sid.scm =================================================================== RCS file: /cvs/src/src/cgen/sid.scm,v retrieving revision 1.12 diff -c -p -r1.12 sid.scm *** cgen/sid.scm 22 Mar 2004 20:44:16 -0000 1.12 --- cgen/sid.scm 16 Feb 2005 21:48:56 -0000 *************** *** 1,5 **** ; Simulator generator support routines. ! ; Copyright (C) 2000-2004 Red Hat, Inc. ; This file is part of CGEN. ; One goal of this file is to provide cover functions for all methods. --- 1,5 ---- ; Simulator generator support routines. ! ; Copyright (C) 2000-2005 Red Hat, Inc. ; This file is part of CGEN. ; One goal of this file is to provide cover functions for all methods. *************** *** 191,196 **** --- 191,197 ---- (case bitsize ((8) "UQI") ((16) "UHI") + ((24) "USI") ((32) "USI") (else (error "bad bitsize argument to gen-ifetch" bitsize))) " (pc, " Index: cgen/utils-gen.scm =================================================================== RCS file: /cvs/src/src/cgen/utils-gen.scm,v retrieving revision 1.11 diff -c -p -r1.11 utils-gen.scm *** cgen/utils-gen.scm 15 Feb 2005 12:52:00 -0000 1.11 --- cgen/utils-gen.scm 16 Feb 2005 21:48:56 -0000 *************** *** 1,5 **** ; Application independent utilities for C/C++ code generation. ! ; Copyright (C) 2000, 2001 Red Hat, Inc. ; This file is part of CGEN. ; See file COPYING.CGEN for details. --- 1,5 ---- ; Application independent utilities for C/C++ code generation. ! ; Copyright (C) 2000, 2001, 2005 Red Hat, Inc. ; This file is part of CGEN. ; See file COPYING.CGEN for details. *************** *** 241,248 **** (-gen-ifld-extract-base f total-length base-value) (if (ifld-beyond-base? f base-length total-length) (-gen-ifld-extract-beyond f base-length total-length var-list) ! (-gen-ifld-extract-base f (min base-length total-length) ! base-value))) ";" (if macro? " \\\n" "\n") ) --- 241,247 ---- (-gen-ifld-extract-base f total-length base-value) (if (ifld-beyond-base? f base-length total-length) (-gen-ifld-extract-beyond f base-length total-length var-list) ! (-gen-ifld-extract-base f base-length base-value))) ";" (if macro? " \\\n" "\n") ) Index: cgen/utils.scm =================================================================== RCS file: /cvs/src/src/cgen/utils.scm,v retrieving revision 1.15 diff -c -p -r1.15 utils.scm *** cgen/utils.scm 27 Jan 2005 20:31:12 -0000 1.15 --- cgen/utils.scm 16 Feb 2005 21:48:56 -0000 *************** *** 1,5 **** ; Generic Utilities. ! ; Copyright (C) 2000-2004 Red Hat, Inc. ; This file is part of CGEN. ; See file COPYING.CGEN for details. --- 1,5 ---- ; Generic Utilities. ! ; Copyright (C) 2000-2005 Red Hat, Inc. ; This file is part of CGEN. ; See file COPYING.CGEN for details. *************** *** 1251,1257 **** (cons "\ THIS FILE IS MACHINE GENERATED WITH CGEN. ! Copyright 1996-2004 Free Software Foundation, Inc. " "\ This program is free software; you can redistribute it and/or modify --- 1251,1257 ---- (cons "\ THIS FILE IS MACHINE GENERATED WITH CGEN. ! Copyright 1996-2005 Free Software Foundation, Inc. " "\ This program is free software; you can redistribute it and/or modify *************** with this program; if not, write to the *** 1276,1282 **** (cons "\ THIS FILE IS MACHINE GENERATED WITH CGEN. ! Copyright (C) 2000-2004 Red Hat, Inc. " "\ ")) --- 1276,1282 ---- (cons "\ THIS FILE IS MACHINE GENERATED WITH CGEN. ! Copyright (C) 2000-2005 Red Hat, Inc. " "\ "))