diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2007-05-28 21:28:31 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2007-05-28 21:28:31 +0000 |
commit | 70ea680b5d510332751fd9f766265d27ce77f7c3 (patch) | |
tree | cf91159ff40c873cd96cf8cff0e74018a447fa9f /gcc/langhooks.c | |
parent | cf9226fbc52d20e822580fda52851f045f78e69b (diff) | |
download | gcc-70ea680b5d510332751fd9f766265d27ce77f7c3.zip gcc-70ea680b5d510332751fd9f766265d27ce77f7c3.tar.gz gcc-70ea680b5d510332751fd9f766265d27ce77f7c3.tar.bz2 |
langhooks-def.h: Remove the prototype for hook_get_alias_set_0.
* langhooks-def.h: Remove the prototype for
hook_get_alias_set_0.
* langhooks.c (hook_get_alias_set_0): Remove.
From-SVN: r125145
Diffstat (limited to 'gcc/langhooks.c')
-rw-r--r-- | gcc/langhooks.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gcc/langhooks.c b/gcc/langhooks.c index 96234f6..f1d4f14 100644 --- a/gcc/langhooks.c +++ b/gcc/langhooks.c @@ -217,15 +217,6 @@ lhd_get_alias_set (tree ARG_UNUSED (t)) return -1; } -/* Provide a hook routine for alias sets that always returns 0. This is - used by languages that haven't deal with alias sets yet. */ - -HOST_WIDE_INT -hook_get_alias_set_0 (tree ARG_UNUSED (t)) -{ - return 0; -} - /* This is the default expand_expr function. */ rtx |