diff options
author | YamaArashi <shadow962@live.com> | 2016-02-13 02:16:07 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-02-13 02:16:07 -0800 |
commit | 87926b4bcc3046ac85fabda09178e9bf50dd8381 (patch) | |
tree | 5b5ed9076e0200c36f979e0f8baaa23f4406cfd8 /gcc/optabs.c | |
parent | 56d3f75d136e839223544f0495cceb098afa1d55 (diff) |
remove use of strings.h
Diffstat (limited to 'gcc/optabs.c')
-rwxr-xr-x | gcc/optabs.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/gcc/optabs.c b/gcc/optabs.c index 474a37a..ce96e91 100755 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -116,11 +116,8 @@ rtx truncxfdf2_libfunc; rtx trunctfdf2_libfunc; rtx memcpy_libfunc; -rtx bcopy_libfunc; rtx memcmp_libfunc; -rtx bcmp_libfunc; rtx memset_libfunc; -rtx bzero_libfunc; rtx throw_libfunc; rtx rethrow_libfunc; @@ -2809,22 +2806,12 @@ emit_cmp_insn (x, y, comparison, size, mode, unsignedp, align) { rtx result; -#ifdef TARGET_MEM_FUNCTIONS emit_library_call (memcmp_libfunc, 0, TYPE_MODE (integer_type_node), 3, XEXP (x, 0), Pmode, XEXP (y, 0), Pmode, convert_to_mode (TYPE_MODE (sizetype), size, TREE_UNSIGNED (sizetype)), TYPE_MODE (sizetype)); -#else - emit_library_call (bcmp_libfunc, 0, - TYPE_MODE (integer_type_node), 3, - XEXP (x, 0), Pmode, XEXP (y, 0), Pmode, - convert_to_mode (TYPE_MODE (integer_type_node), - size, - TREE_UNSIGNED (integer_type_node)), - TYPE_MODE (integer_type_node)); -#endif /* Immediately move the result of the libcall into a pseudo register so reload doesn't clobber the value if it needs @@ -4365,11 +4352,8 @@ init_optabs () trunctfdf2_libfunc = gen_rtx_SYMBOL_REF (Pmode, "__trunctfdf2"); memcpy_libfunc = gen_rtx_SYMBOL_REF (Pmode, "memcpy"); - bcopy_libfunc = gen_rtx_SYMBOL_REF (Pmode, "bcopy"); memcmp_libfunc = gen_rtx_SYMBOL_REF (Pmode, "memcmp"); - bcmp_libfunc = gen_rtx_SYMBOL_REF (Pmode, "__gcc_bcmp"); memset_libfunc = gen_rtx_SYMBOL_REF (Pmode, "memset"); - bzero_libfunc = gen_rtx_SYMBOL_REF (Pmode, "bzero"); throw_libfunc = gen_rtx_SYMBOL_REF (Pmode, "__throw"); rethrow_libfunc = gen_rtx_SYMBOL_REF (Pmode, "__rethrow"); |