diff options
-rw-r--r-- | gcc/jit/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/jit/jit-builtins.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/jit/ChangeLog b/gcc/jit/ChangeLog index 6c6d0a8..279377c 100644 --- a/gcc/jit/ChangeLog +++ b/gcc/jit/ChangeLog @@ -1,3 +1,7 @@ +2015-05-12 David Malcolm <dmalcolm@redhat.com> + + * jit-builtins.c: Include vec.h before target.h. + 2015-04-27 Jim Wilson <jim.wilson@linaro.org> * 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 5bf4a67..a29f446 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" |