* tree-vectorizer.h (VECT_SMODULO): Remove.
From-SVN: r120202
This commit is contained in:
parent
1e84dbdbef
commit
401fb5a0a8
2 changed files with 4 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
|||
2006-12-25 Kazu Hirata <kazu@codesourcery.com>
|
||||
|
||||
* tree-vectorizer.h (VECT_SMODULO): Remove.
|
||||
|
||||
2006-12-24 Andreas Tobler <a.tobler@schweiz.org>
|
||||
|
||||
* config/pa/pa.c: Remove heap vector type defines.
|
||||
|
|
|
@ -320,9 +320,6 @@ known_alignment_for_access_p (struct data_reference *data_ref_info)
|
|||
return (DR_MISALIGNMENT (data_ref_info) != -1);
|
||||
}
|
||||
|
||||
/* Perform signed modulo, always returning a non-negative value. */
|
||||
#define VECT_SMODULO(x,y) ((x) % (y) < 0 ? ((x) % (y) + (y)) : (x) % (y))
|
||||
|
||||
/* vect_dump will be set to stderr or dump_file if exist. */
|
||||
extern FILE *vect_dump;
|
||||
extern enum verbosity_levels vect_verbosity_level;
|
||||
|
|
Loading…
Add table
Reference in a new issue