diff options
author | Roland McGrath <roland@gnu.org> | 2013-10-11 21:56:16 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2013-10-11 21:56:16 +0000 |
commit | 2b64b5511a0d0814eb3938cff986edf493a7b362 (patch) | |
tree | 2aaf7c766c20f163736daaa0c70bb44f01413fec /gold/testsuite/merge_string_literals_1.cc | |
parent | 43819297ce3e76908a840fa66159ca83c1560fe5 (diff) | |
download | gdb-2b64b5511a0d0814eb3938cff986edf493a7b362.zip gdb-2b64b5511a0d0814eb3938cff986edf493a7b362.tar.gz gdb-2b64b5511a0d0814eb3938cff986edf493a7b362.tar.bz2 |
gold/
* configure.ac (MERGE_CONSTANTS_FLAG): New check.
* configure: Regenerate.
* Makefile.in: Regenerate.
* testsuite/merge_string_literals_1.c: Renamed to have .cc suffix.
* testsuite/merge_string_literals_2.c: Likewise.
* testsuite/Makefile.am
(merge_string_literals_1.o, merge_string_literals_2.o): Update deps.
(AM_CFLAGS, AM_CXXFLAGS): Use $(MERGE_CONSTANTS_FLAG) in place of
literal -fmerge-constants.
* testsuite/Makefile.in: Regenerate.
Diffstat (limited to 'gold/testsuite/merge_string_literals_1.cc')
-rw-r--r-- | gold/testsuite/merge_string_literals_1.cc | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gold/testsuite/merge_string_literals_1.cc b/gold/testsuite/merge_string_literals_1.cc new file mode 100644 index 0000000..fc0487c --- /dev/null +++ b/gold/testsuite/merge_string_literals_1.cc @@ -0,0 +1,31 @@ +// merge_string_literals_1.c -- a test case for gold + +// Copyright 2013 Free Software Foundation, Inc. +// Written by Alexander Ivchenko <alexander.ivchenko@intel.com> + +// This file is part of gold. + +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 3 of the License, or +// (at your option) any later version. + +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, +// MA 02110-1301, USA. + +// The goal of this program is to check whether string literals from different +// object files are merged together + +const char* bar1() { + return "abcdefghijklmnopqrstuvwxyz0123456789"; +} +const char* bar1_short() { + return "abcdef"; +} |