aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.h
diff options
context:
space:
mode:
authorBernd Schmidt <bernds@redhat.co.uk>2000-09-17 12:45:51 +0000
committerBernd Schmidt <crux@gcc.gnu.org>2000-09-17 12:45:51 +0000
commitebb1b59ac046c73a55541f5c6d7acc65c6e284b9 (patch)
tree278cde0ad17613ffacff0e59525f96e19d129f9f /gcc/rtl.h
parente85427f984beadddb4bcd2b1948454f1b872c1f5 (diff)
downloadgcc-ebb1b59ac046c73a55541f5c6d7acc65c6e284b9.zip
gcc-ebb1b59ac046c73a55541f5c6d7acc65c6e284b9.tar.gz
gcc-ebb1b59ac046c73a55541f5c6d7acc65c6e284b9.tar.bz2
Bring back equal forms for libcalls
From-SVN: r36469
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r--gcc/rtl.h20
1 files changed, 15 insertions, 5 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h
index d1d7696..a866595 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));