diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-06-26 10:06:56 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-06-26 10:06:56 +0000 |
commit | 16d83c02b51c0e5f9f43d28477013f44afda81d0 (patch) | |
tree | 8a2e3d3e02ca429c89dc152311efede46fcf29ac /gcc/gentarget-def.c | |
parent | faf67f0c4508f805dbda667f2f984485d1625702 (diff) | |
download | gcc-16d83c02b51c0e5f9f43d28477013f44afda81d0.tar.gz |
gcc/
* rtl.h (emit): Add an optional boolean parameter to control
whether barriers are emitted.
* emit-rtl.c (emit): Likewise.
* gensupport.c (get_emit_function): Return null rather than "emit".
* genemit.c (gen_emit_seq): Handle the null return value.
Don't emit barriers after the final instruction in the sequence.
* gentarget-def.c (main): Don't emit barriers after the instruction.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@225000 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gentarget-def.c')
-rw-r--r-- | gcc/gentarget-def.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gentarget-def.c b/gcc/gentarget-def.c index bca94804e18..c1125dde2fe 100644 --- a/gcc/gentarget-def.c +++ b/gcc/gentarget-def.c @@ -245,7 +245,7 @@ main (int argc, char **argv) printf (" if (rtx_insn *insn = dyn_cast <rtx_insn *> (x))\n"); printf (" return insn;\n"); printf (" start_sequence ();\n"); - printf (" emit (x);\n"); + printf (" emit (x, false);\n"); printf (" rtx_insn *res = get_insns ();\n"); printf (" end_sequence ();\n"); printf (" return res;\n"); |