From: Ian Lance Taylor Date: Tue, 11 Oct 2011 21:29:04 +0000 (+0000) Subject: Remove incorrect ChangeLog entry, correct spacing. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=60ca0fe6974aec0d7f9ec1defd30f214e768b3a3;p=gcc.git Remove incorrect ChangeLog entry, correct spacing. From-SVN: r179826 --- diff --git a/gcc/go/ChangeLog b/gcc/go/ChangeLog index db0fdb31b9b..3802fa8e463 100644 --- a/gcc/go/ChangeLog +++ b/gcc/go/ChangeLog @@ -1,13 +1,3 @@ -2011-10-11 Michael Meissner - - * gofrontend/gogo-tree.cc (define_builtin): Delete old interface - with two parallel arrays to hold standard builtin declarations, - and replace it with a function based interface that can support - creating builtins on the fly in the future. Change all uses, and - poison the old names. Make sure 0 is not a legitimate builtin - index. - (Gogo::make_trampoline(tree): Ditto. - 2011-08-24 Roberto Lublinerman * lang.opt: Add fgo-optimize-. diff --git a/gcc/go/gofrontend/gogo-tree.cc b/gcc/go/gofrontend/gogo-tree.cc index 6cfc0124604..349ee255382 100644 --- a/gcc/go/gofrontend/gogo-tree.cc +++ b/gcc/go/gofrontend/gogo-tree.cc @@ -69,7 +69,7 @@ define_builtin(built_in_function bcode, const char* name, const char* libname, libname, NULL_TREE); if (const_p) TREE_READONLY(decl) = 1; - set_builtin_decl (bcode, decl, true); + set_builtin_decl(bcode, decl, true); builtin_functions[name] = decl; if (libname != NULL) {