From: David Malcolm Date: Tue, 12 May 2015 17:19:54 +0000 (+0000) Subject: Unbreak the JIT after conversion of md_asm_adjust to use vec<> X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2637afb722eeaf503bf60b57e4817a0682dba045;p=gcc.git Unbreak the JIT after conversion of md_asm_adjust to use vec<> gcc/jit/ChangeLog: * jit-builtins.c: Include vec.h before target.h. From-SVN: r223091 --- diff --git a/gcc/jit/ChangeLog b/gcc/jit/ChangeLog index 6c6d0a879de..279377c2580 100644 --- a/gcc/jit/ChangeLog +++ b/gcc/jit/ChangeLog @@ -1,3 +1,7 @@ +2015-05-12 David Malcolm + + * jit-builtins.c: Include vec.h before target.h. + 2015-04-27 Jim Wilson * Make-lang.in (jit.mostlyclean): Remove shared libraries and object diff --git a/gcc/jit/jit-builtins.c b/gcc/jit/jit-builtins.c index 5bf4a6750f4..a29f446fe7c 100644 --- a/gcc/jit/jit-builtins.c +++ b/gcc/jit/jit-builtins.c @@ -20,6 +20,7 @@ along with GCC; see the file COPYING3. If not see #include "config.h" #include "system.h" #include "coretypes.h" +#include "vec.h" #include "target.h" #include "stringpool.h"