mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-12 14:20:04 +00:00
- Factor out remaining x86-specific regtests in none/ into an x86/ subdir. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2819
14 lines
197 B
C
14 lines
197 B
C
|
|
#include <stdio.h>
|
|
|
|
// dastest.s
|
|
extern int dastest ( int );
|
|
|
|
int main ( void )
|
|
{
|
|
int x = 49;
|
|
printf("dastest: x = %d\n", x);
|
|
printf("dastest: das(x) = %d\n", dastest(x));
|
|
return 0;
|
|
}
|