diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-18 18:24:10 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-18 18:24:10 +0000 |
commit | 91427914a8c51101f8b8ea79c02b1fa3918816ed (patch) | |
tree | 81bb80dff6b625f57799f589c8e7f111d21c5224 /gcc | |
parent | fd913460dfef9f504d8881379436393b01ed5064 (diff) | |
download | gcc-91427914a8c51101f8b8ea79c02b1fa3918816ed.tar.gz |
* reload1.c (reload_cse_simplify_set): Fix typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39836 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/reload1.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a24b6ccc9bd..d8422127cc7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-02-18 Richard Henderson <rth@redhat.com> + + * reload1.c (reload_cse_simplify_set): Fix typo. + Sun Feb 18 09:30:09 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> * diagnostic.c (_fatal_insn): Decrement errorcount. diff --git a/gcc/reload1.c b/gcc/reload1.c index a10a12a9fbf..13d609ef755 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -8243,7 +8243,7 @@ reload_cse_simplify_set (set, insn) default: abort (); } - this_val = GEN_INT (this_val); + this_rtx = GEN_INT (this_val); } #endif this_cost = rtx_cost (this_rtx, SET); |