Get rid of some compiler warnings.

Fixes 275339 (Christian Borntraeger <borntraeger@de.ibm.com>)


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11832
This commit is contained in:
Florian Krohm 2011-06-25 02:06:21 +00:00
parent 879929d731
commit 68e01239ae
3 changed files with 3 additions and 1 deletions

1
NEWS
View File

@ -258,6 +258,7 @@ fixed
275151] New: Fedora 15 / glibc-2.14 'make regtest' FAIL
fixed
275339 - s390x: fix testcase compile warnings
Release 3.6.1 (16 February 2011)

View File

@ -1,4 +1,5 @@
#include <stdio.h>
#include <string.h>
#include "opcodes.h"
int main()

View File

@ -33,6 +33,6 @@ int main()
asm volatile(".long 0xffffffff\n.long 0xffff0000\n");
if (got_ill)
printf("0xffffffff does not loop\n");
return 0;
}