diff options
author | crux <crux@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-17 12:45:51 +0000 |
---|---|---|
committer | crux <crux@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-17 12:45:51 +0000 |
commit | 2c5d421bfbe49c7ec0157c716e70f0089515cc48 (patch) | |
tree | 278cde0ad17613ffacff0e59525f96e19d129f9f /gcc/rtl.h | |
parent | f6f723c25da8298345f87ddfba0c451a0cfcc6fe (diff) | |
download | gcc-2c5d421bfbe49c7ec0157c716e70f0089515cc48.tar.gz |
Bring back equal forms for libcalls
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36469 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h index d1d76968e73..a866595d23c 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -1913,11 +1913,21 @@ extern void rrotate_double PARAMS ((unsigned HOST_WIDE_INT, HOST_WIDE_INT, HOST_WIDE_INT *)); /* In calls.c */ -extern void emit_library_call PARAMS ((rtx, int, enum machine_mode, - int, ...)); -extern rtx emit_library_call_value PARAMS ((rtx, rtx, int, - enum machine_mode, - int, ...)); +enum libcall_type +{ + LCT_NORMAL = 0, + LCT_CONST = 1, + LCT_PURE = 2, + LCT_CONST_MAKE_BLOCK = 3, + LCT_PURE_MAKE_BLOCK = 4 +}; + +extern void emit_library_call PARAMS ((rtx, enum libcall_type, + enum machine_mode, int, + ...)); +extern rtx emit_library_call_value PARAMS ((rtx, rtx, enum libcall_type, + enum machine_mode, int, + ...)); /* In unroll.c */ extern int set_dominates_use PARAMS ((int, int, int, rtx, rtx)); |