This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Is Banshee required for tree-ssa?


Because I don't have libbanshee, so when tree-alias-common.c contains

    /* If we have andersen's points-to analysis, include it. */
    #ifdef HAVE_BANSHEE
    #include "tree-alias-ander.h"
    #endif

with tree-alias-ander.h containing the declaration of andersen_alias_ops, but
tree-alias-common.c then unconditionally uses that variable:

    static void
    create_alias_vars (void)
    {
      basic_block bb;
      if (HAVE_BANSHEE && flag_tree_points_to == PTA_ANDERSEN)
X       current_alias_ops = andersen_alias_ops;
      else
      ....

So I get

    /home/pme/src/ssa/gcc/tree-alias-common.c: In function `create_alias_vars':
    /home/pme/src/ssa/gcc/tree-alias-common.c:979: error: `andersen_alias_ops' undeclared


-- 
<Adrinael> Real Programmers don't make "Real Programmers" one-liners.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]