From: Doug Evans Date: Wed, 20 Apr 1994 03:33:09 +0000 (+0000) Subject: (reg_raw_mode): Declare. X-Git-Tag: misc/cutover-egcs-0~6860 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=04569dfb3dd540c0acdb49c62aa2bb262554a842;p=thirdparty%2Fgcc.git (reg_raw_mode): Declare. From-SVN: r7083 --- diff --git a/gcc/regs.h b/gcc/regs.h index da411871539d..47463bf3a7b5 100644 --- a/gcc/regs.h +++ b/gcc/regs.h @@ -103,6 +103,13 @@ extern char regs_ever_live[FIRST_PSEUDO_REGISTER]; extern char *reg_names[FIRST_PSEUDO_REGISTER]; +/* For each hard register, the widest mode object that it can contain. + This will be a MODE_INT mode if the register can hold integers. Otherwise + it will be a MODE_FLOAT or a MODE_CC mode, whichever is valid for the + register. */ + +extern enum machine_mode reg_raw_mode[FIRST_PSEUDO_REGISTER]; + /* Vector indexed by regno; gives uid of first insn using that reg. This is computed by reg_scan for use by cse and loop. It is sometimes adjusted for subsequent changes during loop,