Automatic date update in version.in
[binutils-gdb.git] / gold / testsuite / text_section_grouping.cc
blob37c598a36f1534fd0d1b19b9156756af3f276b6d
1 // text_section_grouping.cc -- a test case for gold
3 // Copyright (C) 2012-2024 Free Software Foundation, Inc.
4 // Written by Sriraman Tallam <tmsriram@google.com>.
6 // This file is part of gold.
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 3 of the License, or
11 // (at your option) any later version.
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 // MA 02110-1301, USA.
23 // The goal of this program is to verify if .text sections are grouped
24 // according to prefix. .text.unlikely, .text.startup and .text.hot should
25 // be grouped and placed together.
27 extern "C"
28 __attribute__ ((section(".text.hot.foo")))
29 int hot_foo()
31 return 1;
34 extern "C"
35 __attribute__ ((section(".text.startup.foo")))
36 int startup_foo()
38 return 1;
41 extern "C"
42 __attribute__ ((section(".text.unlikely.foo")))
43 int unlikely_foo()
45 return 1;
48 extern "C"
49 __attribute__ ((section(".text.hot.bar")))
50 int hot_bar()
52 return 1;
55 extern "C"
56 __attribute__ ((section(".text.startup.bar")))
57 int startup_bar()
59 return 1;
62 extern "C"
63 __attribute__ ((section(".text.unlikely.bar")))
64 int unlikely_bar()
66 return 1;
69 int main()
71 return 1;