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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [gdb-5.0/] [gdb/] [testsuite/] [gdb.base/] [ending-run.c] - Diff between revs 107 and 1765

Only display areas with differences | Details | Blame | View Log

Rev 107 Rev 1765
/* 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 ));
 
 
        }
        }
    printf( " Goodbye!\n" );
    printf( " Goodbye!\n" );
    return 0;
    return 0;
}
}
 
 

powered by: WebSVN 2.1.0

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