123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /* GCC-StarPU
- Copyright (C) 2011 Institut National de Recherche en Informatique et Automatique
- GCC-StarPU is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- GCC-StarPU is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with GCC-StarPU. If not, see <http://www.gnu.org/licenses/>. */
- extern float *y;
- static const double a[123];
- int
- main (int argc, char *argv[])
- {
- #pragma starpu initialize
- int x[123] __attribute__ ((unused));
- static char z[345] __attribute__ ((unused));
- #pragma starpu register x
- #pragma starpu acquire /* (error "parse error") */
- #pragma starpu acquire 123 /* (error "neither a pointer nor an array") */
- #pragma starpu acquire does_not_exit /* (error "unbound variable") */
- #pragma starpu acquire argc /* (error "neither a pointer nor an array") */
- #pragma starpu acquire y
- #pragma starpu acquire x
- /* XXX: Uncomment below when this is supported. */
- #if 0
- #pragma starpu acquire z /* error "not registered" */
- #pragma starpu acquire a /* error "not registered" */
- #pragma starpu acquire argv /* error "not registered" */
- #endif
- return 1;
- }
|