source: binutils/trunk/gold/testsuite/script_test_11a.c@ 1973

Last change on this file since 1973 was 1973, checked in by Silvan Scherrer, 8 years ago

binutils: update trunk to version 2.27

File size: 400 bytes
Line 
1#include "script_test_11.h"
2
3static unsigned int buffer1[256] __attribute((used));
4static unsigned int buffer2[256] __attribute((used)) = { 1 };
5
6unsigned int foo __attribute__((section(".foo")));
7extern char __foo_start;
8extern char __foo_end;
9
10int
11main (void)
12{
13 if (&__foo_end - &__foo_start != sizeof(foo))
14 return 1;
15 if (!ptr_equal(&__foo_start, (char *)&foo))
16 return 2;
17 return 0;
18}
Note: See TracBrowser for help on using the repository browser.