diff options
author | Ulrich Drepper <drepper@gmail.com> | 2012-01-27 15:05:19 -0500 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2012-01-27 15:05:19 -0500 |
commit | 6ee65ed6ddbf04402fad0bec6aa9c73b9d982ae4 (patch) | |
tree | a26f39ff87542c60680d6047c512b3009734bf21 /elf/tst-relsort1mod1.c | |
parent | 43455e09166350b1237d2168d1b008c9f47ebaf0 (diff) |
Sort objects before relocations
Diffstat (limited to 'elf/tst-relsort1mod1.c')
-rw-r--r-- | elf/tst-relsort1mod1.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/elf/tst-relsort1mod1.c b/elf/tst-relsort1mod1.c new file mode 100644 index 0000000000..9e4a94321d --- /dev/null +++ b/elf/tst-relsort1mod1.c @@ -0,0 +1,7 @@ +extern int foo (double); + +int +bar (void) +{ + return foo (1.2); +} |