diff options
author | David Malcolm <dmalcolm@redhat.com> | 2015-05-12 17:19:54 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2015-05-12 17:19:54 +0000 |
commit | 2637afb722eeaf503bf60b57e4817a0682dba045 (patch) | |
tree | f1c67d3bfb6bf2b47b7adedcd398b5057f82b1de /gcc/jit/jit-builtins.c | |
parent | 52c266bab2e3953613ba335c301a5fdd9eb38669 (diff) | |
download | gcc-2637afb722eeaf503bf60b57e4817a0682dba045.zip gcc-2637afb722eeaf503bf60b57e4817a0682dba045.tar.gz gcc-2637afb722eeaf503bf60b57e4817a0682dba045.tar.bz2 |
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
Diffstat (limited to 'gcc/jit/jit-builtins.c')
-rw-r--r-- | gcc/jit/jit-builtins.c | 1 |
1 files changed, 1 insertions, 0 deletions
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" |