Deleted Added
full compact
target.h (169690) target.h (220150)
1/* Data structure definitions for a generic GCC target.
2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007
3 Free Software Foundation, Inc.
4
5This program is free software; you can redistribute it and/or modify it
6under the terms of the GNU General Public License as published by the
7Free Software Foundation; either version 2, or (at your option) any
8later version.

--- 361 unchanged lines hidden (view full) ---

370
371 /* Functions relating to vectorization. */
372 struct vectorize
373 {
374 /* The following member value is a pointer to a function called
375 by the vectorizer, and return the decl of the target builtin
376 function. */
377 tree (* builtin_mask_for_load) (void);
1/* Data structure definitions for a generic GCC target.
2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007
3 Free Software Foundation, Inc.
4
5This program is free software; you can redistribute it and/or modify it
6under the terms of the GNU General Public License as published by the
7Free Software Foundation; either version 2, or (at your option) any
8later version.

--- 361 unchanged lines hidden (view full) ---

370
371 /* Functions relating to vectorization. */
372 struct vectorize
373 {
374 /* The following member value is a pointer to a function called
375 by the vectorizer, and return the decl of the target builtin
376 function. */
377 tree (* builtin_mask_for_load) (void);
378
379 /* Return true if vector alignment is reachable (by peeling N
380 interations) for the given type. */
381 bool (* vector_alignment_reachable) (tree, bool);
378 } vectorize;
379
380 /* The initial value of target_flags. */
381 int default_target_flags;
382
383 /* Handle target switch CODE (an OPT_* value). ARG is the argument
384 passed to the switch; it is NULL if no argument was. VALUE is the
385 value of ARG if CODE specifies a UInteger option, otherwise it is

--- 465 unchanged lines hidden ---
382 } vectorize;
383
384 /* The initial value of target_flags. */
385 int default_target_flags;
386
387 /* Handle target switch CODE (an OPT_* value). ARG is the argument
388 passed to the switch; it is NULL if no argument was. VALUE is the
389 value of ARG if CODE specifies a UInteger option, otherwise it is

--- 465 unchanged lines hidden ---