diff options
author | danglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-10-29 18:58:48 +0000 |
---|---|---|
committer | danglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-10-29 18:58:48 +0000 |
commit | e202682d72ecbfb51d70a45733114a62fecad4dd (patch) | |
tree | 89499821369942b54a8dad376e9075f28a1c9821 /gcc/config/pa/constraints.md | |
parent | 9f68982088705ec16e2a44b18f7bd99f6a96508d (diff) | |
download | gcc-e202682d72ecbfb51d70a45733114a62fecad4dd.tar.gz |
PR target/50617
* config/pa/protos.h (attr_length_save_restore_dltp): Delete.
(cmpib_comparison_operator): Likewise.
(following_cal, output_and, output_ior, output_move_double,
output_fp_move_double, output_block_move, output_block_clear,
output_cbranch, output_lbranch, output_bb, output_bvb, output_dbra,
output_movb, output_parallel_movb, output_parallel_addb, output_call,
output_indirect_call, output_millicode_call, output_mul_insn,
output_div_insn, output_mod_insn, singlemove_string,
output_arg_descriptor, output_global_address, print_operand,
legitimize_pic_address, hppa_encode_label, symbolic_expression_p,
fmpyaddoperands, fmpysuboperands, emit_bcond_fp, emit_move_sequence,
emit_hpdiv_const, is_function_label_plus_const, jump_in_call_delay,
hppa_fpstore_bypass_p, attr_length_millicode_call, attr_length_call,
attr_length_indirect_call, return_addr_rtx, function_arg_padding,
insn_refs_are_delayed, get_deferred_plabel, ldil_cint_p, zdepi_cint_p,
output_ascii, compute_frame_size, and_mask_p, cint_ok_for_move,
hppa_expand_prologue, hppa_expand_epilogue, ior_mask_p,
compute_zdepdi_operands, output_64bit_and, output_64bit_ior,
reloc_needed, magic_milli, shadd_constant_p): Consistently prefix
exported functions and variables with "pa_".
* config/pa/predicates.md: Likewise.
* config/pa/pa64-hpux.h: likewise.
* config/pa/som.h: Likewise.
* config/pa/elf.h: Likewise.
* config/pa/pa64-linux.h: Likewise.
* config/pa/pa.md: Likewise.
* config/pa/pa.c: Likewise.
* config/pa/pa-linux.h: Likewise.
* config/pa/pa.h: Likewise.
* config/pa/constraints.md: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@180660 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/pa/constraints.md')
-rw-r--r-- | gcc/config/pa/constraints.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/pa/constraints.md b/gcc/config/pa/constraints.md index c1f3d5cd3f3..ce5a5f7306a 100644 --- a/gcc/config/pa/constraints.md +++ b/gcc/config/pa/constraints.md @@ -55,7 +55,7 @@ (define_constraint "K" "Integer constant that can be deposited with a zdepi instruction." (and (match_code "const_int") - (match_test "zdepi_cint_p (ival)"))) + (match_test "pa_zdepi_cint_p (ival)"))) (define_constraint "L" "Signed 5-bit integer constant." @@ -70,7 +70,7 @@ (define_constraint "N" "Integer constant that can be loaded with a ldil instruction." (and (match_code "const_int") - (match_test "ldil_cint_p (ival)"))) + (match_test "pa_ldil_cint_p (ival)"))) (define_constraint "O" "Integer constant such that ival+1 is a power of 2." @@ -81,7 +81,7 @@ "Integer constant that can be used as an and mask in depi and extru instructions." (and (match_code "const_int") - (match_test "and_mask_p (ival)"))) + (match_test "pa_and_mask_p (ival)"))) (define_constraint "S" "Integer constant 31." |