diff options
author | mycroft <mycroft@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-06-24 02:59:40 +0000 |
---|---|---|
committer | mycroft <mycroft@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-06-24 02:59:40 +0000 |
commit | b3c0371ff67af674fc4b69f0a2244252c2aa3805 (patch) | |
tree | 691e31b383af8ed22308e66e0b5f193697bf3928 /gcc | |
parent | b3db3c4a08debe08e26b7fddfb5171ca0f33745c (diff) | |
download | ppe42-gcc-b3c0371ff67af674fc4b69f0a2244252c2aa3805.tar.gz ppe42-gcc-b3c0371ff67af674fc4b69f0a2244252c2aa3805.zip |
entered into RCS
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@1258 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/regs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/regs.h b/gcc/regs.h index 425f89a93c1..1a74ddef5b1 100644 --- a/gcc/regs.h +++ b/gcc/regs.h @@ -108,7 +108,7 @@ extern char *reg_names[FIRST_PSEUDO_REGISTER]; It is sometimes adjusted for subsequent changes during loop, but not adjusted by cse even if cse invalidates it. */ -extern short *regno_first_uid; +extern int *regno_first_uid; /* Vector indexed by regno; gives uid of last insn using that reg. This is computed by reg_scan for use by cse and loop. @@ -116,7 +116,7 @@ extern short *regno_first_uid; but not adjusted by cse even if cse invalidates it. This is harmless since cse won't scan through a loop end. */ -extern short *regno_last_uid; +extern int *regno_last_uid; /* Vector indexed by regno; contains 1 for a register is considered a pointer. Reloading, etc. will use a pointer register rather than a non-pointer |