diff options
author | Richard Guenther <rguenther@suse.de> | 2012-03-12 14:17:26 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2012-03-12 14:17:26 +0000 |
commit | 21fa2faf26529ce8b1265a8d02409a727df35221 (patch) | |
tree | 9a64c03995773062640a21db49850e4ab2339e03 /gcc/fortran/f95-lang.c | |
parent | 7ee6fd6836b487a0229b69821c71b6878b529870 (diff) | |
download | gcc-21fa2faf26529ce8b1265a8d02409a727df35221.zip gcc-21fa2faf26529ce8b1265a8d02409a727df35221.tar.gz gcc-21fa2faf26529ce8b1265a8d02409a727df35221.tar.bz2 |
lto-lang.c (builtin_type_for_size): Use lto_type_for_size.
2012-03-12 Richard Guenther <rguenther@suse.de>
lto/
* lto-lang.c (builtin_type_for_size): Use lto_type_for_size.
fortran/
* f95-lang.c (builtin_type_for_size): Use gfc_type_for_size.
c-common/
* c-common.c (c_common_get_narrower): Use c_common_type_for_size.
(builtin_type_for_size): Likewise.
* config/alpha/alpha.c (alpha_gimplify_va_arg): Use
build_nonstandard_integer_type.
From-SVN: r185229
Diffstat (limited to 'gcc/fortran/f95-lang.c')
-rw-r--r-- | gcc/fortran/f95-lang.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/f95-lang.c b/gcc/fortran/f95-lang.c index 52d1887..05b598f 100644 --- a/gcc/fortran/f95-lang.c +++ b/gcc/fortran/f95-lang.c @@ -605,7 +605,7 @@ build_builtin_fntypes (tree *fntype, tree type) static tree builtin_type_for_size (int size, bool unsignedp) { - tree type = lang_hooks.types.type_for_size (size, unsignedp); + tree type = gfc_type_for_size (size, unsignedp); return type ? type : error_mark_node; } |