diff options
author | Timothy Moore <moore@gnu.org> | 1992-10-15 15:57:37 +0000 |
---|---|---|
committer | Timothy Moore <moore@gnu.org> | 1992-10-15 15:57:37 +0000 |
commit | 907b71792398b821ba524be1fd48dcaf8fd51144 (patch) | |
tree | 4f503e0c8171ac53762de6a757ccc8f0543408ea /gcc | |
parent | 8a9c76f3c232a8c6a38c2616419d8a55ecaf4e98 (diff) | |
download | gcc-907b71792398b821ba524be1fd48dcaf8fd51144.zip gcc-907b71792398b821ba524be1fd48dcaf8fd51144.tar.gz gcc-907b71792398b821ba524be1fd48dcaf8fd51144.tar.bz2 |
(INITIAL_FRAME_POINTER_OFFSET): Pass extra null parameter
to compute_frame_size..
From-SVN: r2478
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/pa/pa.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/pa/pa.h b/gcc/config/pa/pa.h index 0db2be0..63541f8 100644 --- a/gcc/config/pa/pa.h +++ b/gcc/config/pa/pa.h @@ -434,7 +434,7 @@ extern int leaf_function; it's not, there's no point in trying to eliminate the frame pointer. If it is a leaf function, we guessed right! */ #define INITIAL_FRAME_POINTER_OFFSET(VAR) \ - do { int __fsize = compute_frame_size (get_frame_size (), 1) + 32; \ + do { int __fsize = compute_frame_size (get_frame_size (), 1, 0) + 32; \ (VAR) = -(TARGET_SNAKE ? (__fsize + 63) & ~63 : __fsize); } while (0) /* Base register for access to arguments of the function. */ @@ -1228,7 +1228,7 @@ extern union tree_node *current_function_decl; if (memory_address_p (MODE, X)) \ goto WIN; \ if (flag_pic) (X) = legitimize_pic_address (X, MODE, gen_reg_rtx (Pmode));\ - else if ((GET_CODE (X) == SYMBOL_REF && read_only_operand (X)) \ + else if ((GET_CODE (X) == SYMBOL_REF && read_only_operand (X))\ || GET_CODE (X) == LABEL_REF) \ (X) = gen_rtx (LO_SUM, Pmode, \ copy_to_mode_reg (Pmode, gen_rtx (HIGH, Pmode, X)), X); \ |