X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fgcc.dg%2F20021014-1.c;fp=gcc%2Ftestsuite%2Fgcc.dg%2F20021014-1.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=8a3ad1d8642b7fcf2e60e77320642927e1f27792;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/gcc.dg/20021014-1.c b/gcc/testsuite/gcc.dg/20021014-1.c deleted file mode 100644 index 8a3ad1d8..00000000 --- a/gcc/testsuite/gcc.dg/20021014-1.c +++ /dev/null @@ -1,30 +0,0 @@ -/* { dg-do run } */ -/* { dg-options "-O2 -p" } */ -/* { dg-error "profiler" "No profiler support" { target mmix-*-* } 0 } */ -/* Support for -p on solaris2 relies on mcrt1.o which comes with the - vendor compiler. We cannot reiably predict the directory where the - vendor compiler (and thus mcrt1.o) is installed so we can't - necessarily find mcrt1.o even if we have it. */ -/* { dg-error "mcrt1.o" "Optional vendor profiler support missing" { target *-*-solaris2* } 0 } */ -/* Support for -p on irix relies on libprof1.a which doesn't appear to - exist on any irix6 system currently posting testsuite results. */ -/* { dg-error "libprof1.a" "Profiler support missing" { target mips*-*-irix* } 0 } */ - -extern void abort (void); -extern void exit (int); - -int foo (void) -{ - static int bar (int x) - { - return x + 3; - } - return bar (1) + bar (2); -} - -int main (void) -{ - if (foo () != 9) - abort (); - exit (0); -}