|
From: <sv...@va...> - 2011-04-04 10:15:41
|
Author: bart
Date: 2011-04-04 11:15:33 +0100 (Mon, 04 Apr 2011)
New Revision: 11683
Log:
Made the line numbers in exp-ptrcheck/tests/partial.c and the regression test output match again.
Modified:
trunk/exp-ptrcheck/tests/partial.c
Modified: trunk/exp-ptrcheck/tests/partial.c
===================================================================
--- trunk/exp-ptrcheck/tests/partial.c 2011-04-03 17:42:19 UTC (rev 11682)
+++ trunk/exp-ptrcheck/tests/partial.c 2011-04-04 10:15:33 UTC (rev 11683)
@@ -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);
|