OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gdb-6.8/] [gdb/] [testsuite/] [gdb.base/] [ending-run.c] - Diff between revs 24 and 157

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 24 Rev 157
/* Test program for <next-at-end> and
/* Test program for <next-at-end> and
 * <leaves-core-file-on-quit> bugs.
 * <leaves-core-file-on-quit> bugs.
 */
 */
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>
 
 
#ifdef PROTOTYPES
#ifdef PROTOTYPES
int callee (int x)
int callee (int x)
#else
#else
int callee( x )
int callee( x )
int x;
int x;
#endif
#endif
{
{
    int y = x * x;
    int y = x * x;
    return (y - 2);
    return (y - 2);
}
}
 
 
int main()
int main()
{
{
 
 
    int *p;
    int *p;
    int i;
    int i;
 
 
    p = (int *) malloc( 4 );
    p = (int *) malloc( 4 );
 
 
    for (i = 1; i < 10; i++)
    for (i = 1; i < 10; i++)
        {
        {
            printf( "%d ", callee( i ));
            printf( "%d ", callee( i ));
            fflush (stdout);
            fflush (stdout);
        }
        }
    printf( " Goodbye!\n" ); fflush (stdout);
    printf( " Goodbye!\n" ); fflush (stdout);
    return 0;
    return 0;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.