diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-07-26 22:18:56 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-07-26 22:18:56 +0000 |
commit | 5b5d175a15a81e6aa13b90e74588dbba44647f3f (patch) | |
tree | 1188aad66cb41e64b9ea201f7054ab7bb80065e9 /gcc/dwarfout.c | |
parent | d5919515e4567c3574a2a8e283fa63dd5a902bb3 (diff) | |
download | ppe42-gcc-5b5d175a15a81e6aa13b90e74588dbba44647f3f.tar.gz ppe42-gcc-5b5d175a15a81e6aa13b90e74588dbba44647f3f.zip |
(output_bound_representation): Fix typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12569 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dwarfout.c')
-rw-r--r-- | gcc/dwarfout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dwarfout.c b/gcc/dwarfout.c index 987a653c7bd..a677698f1ac 100644 --- a/gcc/dwarfout.c +++ b/gcc/dwarfout.c @@ -1780,7 +1780,7 @@ output_bound_representation (bound, dim_num, u_or_l) || TREE_CODE (bound) == CONVERT_EXPR) bound = TREE_OPERAND (bound, 0); - if (TREE_CODE (bound) == SAVE_EXPR_RTL) + if (TREE_CODE (bound) == SAVE_EXPR) output_loc_descriptor (eliminate_regs (SAVE_EXPR_RTL (bound), 0, NULL_RTX)); } |