Merge lp:~michaelh1/gcc-linaro/lp-602171 into lp:gcc-linaro/4.4

Proposed by Michael Hope
Status: Superseded
Proposed branch: lp:~michaelh1/gcc-linaro/lp-602171
Merge into: lp:gcc-linaro/4.4
Diff against target: 50 lines (+27/-1)
2 files modified
ChangeLog.linaro (+17/-0)
gcc/testsuite/gcc.target/i386/pr9771-1.c (+10/-1)
To merge this branch: bzr merge lp:~michaelh1/gcc-linaro/lp-602171
Reviewer Review Type Date Requested Status
Loïc Minier (community) Abstain
Review via email: mp+29745@code.launchpad.net

This proposal has been superseded by a proposal from 2010-07-12.

Description of the change

Fixes LP: #602171

To post a comment you must log in.
Revision history for this message
Loïc Minier (lool) :
review: Abstain

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'ChangeLog.linaro'
--- ChangeLog.linaro 2010-07-09 11:47:12 +0000
+++ ChangeLog.linaro 2010-07-12 21:41:54 +0000
@@ -1,3 +1,20 @@
12010-07-13 Michael Hope <michael.hope@linaro.org>
2
3 LP: #602171
4 * gcc/testsuite/gcc.target/i386/pr9771-1.c: Merge r159776 from FSF
5 GCC into the Linaro branch.
6 * gcc/testsuite/gcc.target/arm/frame-pointer-1.c: Likewise.
7
8 Original entry:
9 2010-05-24 Paul Brook <paul@codesourcery.com>
10
11 * gcc.target/arm/frame-pointer-1.c: New test.
12 * gcc.target/i386/pr9771-1.c: Move code out of main to allow frame
13 pointer elimination.
14
15 Note that the change was already present but the test cases hadn't
16 been updated.
17
12010-07-09 Andrew Stubbs <ams@codesourcery.com>182010-07-09 Andrew Stubbs <ams@codesourcery.com>
219
3 gcc/20 gcc/
421
=== modified file 'gcc/testsuite/gcc.target/i386/pr9771-1.c'
--- gcc/testsuite/gcc.target/i386/pr9771-1.c 2007-08-22 08:59:14 +0000
+++ gcc/testsuite/gcc.target/i386/pr9771-1.c 2010-07-12 21:41:54 +0000
@@ -28,7 +28,10 @@
28 *adr = save;28 *adr = save;
29}29}
3030
31int main()31/* This must not be inlined becuase main() requires the frame pointer
32 for stack alignment. */
33void test(void) __attribute__((noinline));
34void test(void)
32{35{
33 B = &x;36 B = &x;
3437
@@ -42,3 +45,9 @@
42 exit(0);45 exit(0);
43}46}
4447
48int main()
49{
50 test();
51 return 0;
52
53}

Subscribers

People subscribed via source and target branches