]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Made the line numbers in exp-ptrcheck/tests/partial.c and the regression test output...
authorBart Van Assche <bvanassche@acm.org>
Mon, 4 Apr 2011 10:15:33 +0000 (10:15 +0000)
committerBart Van Assche <bvanassche@acm.org>
Mon, 4 Apr 2011 10:15:33 +0000 (10:15 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11683

exp-ptrcheck/tests/partial.c

index 2b2ee7fd3dfaa5a5befe51d0fa4bce9ce3eefbf6..af07281509bc25b0dc661d1bb4760444bd603d39 100644 (file)
@@ -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);