diff options
author | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-10-14 17:36:05 +0000 |
---|---|---|
committer | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-10-14 17:36:05 +0000 |
commit | 294c1dee8be7a45feee509726294a4590eae695c (patch) | |
tree | 61c1eebf96d1d841eab95608188a2a49716fc98b /gcc/config/rs6000 | |
parent | c241ed0ebabf9d77121162a0046f7616786a5bb3 (diff) | |
download | gcc-294c1dee8be7a45feee509726294a4590eae695c.tar.gz |
Fix typo in my last change
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@179998 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/rs6000')
-rw-r--r-- | gcc/config/rs6000/rs6000.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index aee976cbd4a..d97ddd32849 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -12213,7 +12213,7 @@ rs6000_init_builtins (void) #if TARGET_XCOFF /* AIX libm provides clog as __clog. */ - if ((tdecl = builtin_decl_explicit ([BUILT_IN_CLOG))) != NULL_TREE) + if ((tdecl = builtin_decl_explicit (BUILT_IN_CLOG)) != NULL_TREE) set_user_assembler_name (tdecl, "__clog"); #endif |