From: Bart Van Assche Date: Mon, 4 Apr 2011 10:15:33 +0000 (+0000) Subject: Made the line numbers in exp-ptrcheck/tests/partial.c and the regression test output... X-Git-Tag: svn/VALGRIND_3_7_0~552 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d411ca1dee2c8aac1aadcb5f51951687716d3b41;p=thirdparty%2Fvalgrind.git Made the line numbers in exp-ptrcheck/tests/partial.c and the regression test output match again. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11683 --- diff --git a/exp-ptrcheck/tests/partial.c b/exp-ptrcheck/tests/partial.c index 2b2ee7fd3d..af07281509 100644 --- a/exp-ptrcheck/tests/partial.c +++ b/exp-ptrcheck/tests/partial.c @@ -3,16 +3,11 @@ int main ( void ) { - int* x3 = malloc(3); - float f __attribute__((unused)), *f3 = malloc(3); - int* x4 = malloc(4); - double d __attribute__((unused)), *d7 = malloc(7); - int* x5 = malloc(5); - long long int lli __attribute__((unused)), *lli7 = malloc(7); - int* x6 = malloc(6); - char c __attribute__((unused)), *c0 = malloc(0); - int* x7 = malloc(7); - short int s __attribute__((unused)), *s1 = malloc(1); + int* x3 = malloc(3); float f __attribute__((unused)), *f3 = malloc(3); + int* x4 = malloc(4); double d __attribute__((unused)), *d7 = malloc(7); + int* x5 = malloc(5); long long int lli __attribute__((unused)), *lli7 = malloc(7); + int* x6 = malloc(6); char c __attribute__((unused)), *c0 = malloc(0); + int* x7 = malloc(7); short int s __attribute__((unused)), *s1 = malloc(1); int x __attribute__((unused)); int* y4 = malloc(4); int* y5 = malloc(5);