diff options
author | Uros Bizjak <uros@gcc.gnu.org> | 2010-07-09 13:55:31 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2010-07-09 13:55:31 +0200 |
commit | f55a7cbc2c540a15d3059823d85f879d6bc05b45 (patch) | |
tree | 232217feb387564471d9c4f19e1a482baebc14ce | |
parent | dbfcc0597ce9ec0cd4b05b17f132b8680394eb83 (diff) | |
download | gcc-f55a7cbc2c540a15d3059823d85f879d6bc05b45.zip gcc-f55a7cbc2c540a15d3059823d85f879d6bc05b45.tar.gz gcc-f55a7cbc2c540a15d3059823d85f879d6bc05b45.tar.bz2 |
i386.c (ix86_veclib_handler): Make static.
* config/i386/i386.c (ix86_veclib_handler): Make static.
From-SVN: r161995
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9784a99..7ee8a69 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2010-07-09 Uros Bizjak <ubizjak@gmail.com> + + * config/i386/i386.c (ix86_veclib_handler): Make static. + 2010-07-09 Richard Guenther <rguenther@suse.de> PR tree-optimization/44852 @@ -41,7 +45,7 @@ * genconditions.c: Likewise. * genpreds.c: Likewise. -2010-07-08 Andi Kleen <ak@linux.intel.com> +2010-07-08 Andi Kleen <ak@linux.intel.com> * lto-section-in.c (lto_section_name): Add missing comma. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 99b4cc3..883cb78 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -2143,7 +2143,8 @@ static int ix86_isa_flags_explicit; #define OPTION_MASK_ISA_F16C_UNSET OPTION_MASK_ISA_F16C /* Vectorization library interface and handlers. */ -tree (*ix86_veclib_handler)(enum built_in_function, tree, tree) = NULL; +static tree (*ix86_veclib_handler) (enum built_in_function, tree, tree); + static tree ix86_veclibabi_svml (enum built_in_function, tree, tree); static tree ix86_veclibabi_acml (enum built_in_function, tree, tree); |