commit 77422fd3d87d2a70577642e61828f31c8d1ead31 Author: David Malcolm Date: Thu Jul 9 17:42:14 2015 -0400 FIXME: PR jit/66812: candidate fix: implementation of LANG_HOOKS_GET_ALIAS_SET diff --git a/gcc/jit/dummy-frontend.c b/gcc/jit/dummy-frontend.c index 3ddab50..6481c29 100644 --- a/gcc/jit/dummy-frontend.c +++ b/gcc/jit/dummy-frontend.c @@ -39,6 +39,12 @@ along with GCC; see the file COPYING3. If not see #include "function.h" #include "dumpfile.h" #include "cgraph.h" +#include "predict.h" +#include "function.h" +#include "basic-block.h" +#include "tree-ssa-alias.h" +#include "gimple-expr.h" +#include "gimple.h" #include "jit-common.h" #include "jit-logging.h" @@ -252,6 +258,9 @@ jit_langhook_getdecls (void) #undef LANG_HOOKS_GETDECLS #define LANG_HOOKS_GETDECLS jit_langhook_getdecls +#undef LANG_HOOKS_GET_ALIAS_SET +#define LANG_HOOKS_GET_ALIAS_SET gimple_get_alias_set + struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER; #include "gt-jit-dummy-frontend.h"