Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(210)

Side by Side Diff: gcc/gcc/testsuite/gcc.dg/pragma-re-3.c

Issue 3050029: [gcc] GCC 4.5.0=>4.5.1 (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/nacl-toolchain.git
Patch Set: Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* { dg-do link { target *-*-solaris* } } */
2 1
3 #pragma redefine_extname f1 f 2 #pragma redefine_extname f1 f
4 #pragma redefine_extname g1 g 3 #pragma redefine_extname g1 g
5 4
6 void f() { 5 void f() {
7 extern int f1(); 6 extern int f1();
8 f1(); 7 f1();
9 } 8 }
10 9
11 void g() { 10 void g() {
12 g1(); 11 g1();
13 } 12 }
14 13
15 int main () { 14 int main () {
16 f(); 15 f();
17 g(); 16 g();
18 } 17 }
OLDNEW
« no previous file with comments | « gcc/gcc/testsuite/gcc.dg/pragma-re-2.c ('k') | gcc/gcc/testsuite/gcc.dg/prefetch-loop-arrays-1.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698