2015-04-14 Richard Biener <rguenther@suse.de>
* graphite-scop-detection.c: Do not include cp/cp-tree.h.
(graphite_can_represent_scev): Use POINTER_TYPE_P.
From-SVN: r222087
+2015-04-14 Richard Biener <rguenther@suse.de>
+
+ * graphite-scop-detection.c: Do not include cp/cp-tree.h.
+ (graphite_can_represent_scev): Use POINTER_TYPE_P.
+
2015-04-14 Richard Biener <rguenther@suse.de>
PR tree-optimization/65758
#include "tree-pass.h"
#include "sese.h"
#include "tree-ssa-propagate.h"
-#include "cp/cp-tree.h"
#ifdef HAVE_isl
#include "graphite-poly.h"
the only nodes, which are disabled in case they are pointers to object
types, but this can be changed. */
- if (TYPE_PTROB_P (TREE_TYPE (scev)) && TREE_CODE (scev) == SSA_NAME)
+ if (POINTER_TYPE_P (TREE_TYPE (scev)) && TREE_CODE (scev) == SSA_NAME)
return false;
switch (TREE_CODE (scev))