]> rtime.felk.cvut.cz Git - l4.git/blobdiff - l4/pkg/valgrind/src/valgrind-3.6.0-svn/exp-ptrcheck/tests/partial.c
update
[l4.git] / l4 / pkg / valgrind / src / valgrind-3.6.0-svn / exp-ptrcheck / tests / partial.c
index 7bdc356482684e79300bad1aafbee8e03ceba437..af07281509bc25b0dc661d1bb4760444bd603d39 100644 (file)
@@ -3,12 +3,12 @@
 
 int main ( void )
 {
-   int* x3 = malloc(3);    float         f,   *f3   = malloc(3);
-   int* x4 = malloc(4);    double        d,   *d7   = malloc(7);
-   int* x5 = malloc(5);    long long int lli, *lli7 = malloc(7);
-   int* x6 = malloc(6);    char          c,   *c0   = malloc(0);
-   int* x7 = malloc(7);    short int     s,   *s1   = malloc(1);
-   int  x;
+   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);
    int* y6 = malloc(6);