diff options
author | Richard Henderson <rth@twiddle.net> | 2014-03-30 17:14:02 -0700 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2015-02-12 21:21:38 -0800 |
commit | a4ce099a7a4b4734c372f6bf28f3362e370f23c1 (patch) | |
tree | 5f87c02f8b24417456b105757342b899f4723c34 /tcg/tcg-op.h | |
parent | 0c627cdca20155753a536c51385abb73941a59a0 (diff) | |
download | qemu-a4ce099a7a4b4734c372f6bf28f3362e370f23c1.zip |
tcg: Implement insert_op_before
Rather reserving space in the op stream for optimization,
let the optimizer add ops as necessary.
Reviewed-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'tcg/tcg-op.h')
-rw-r--r-- | tcg/tcg-op.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tcg/tcg-op.h b/tcg/tcg-op.h index eacfd8aad1..96adf9af6a 100644 --- a/tcg/tcg-op.h +++ b/tcg/tcg-op.h @@ -28,7 +28,6 @@ /* Basic output routines. Not for general consumption. */ -void tcg_gen_op0(TCGContext *, TCGOpcode); void tcg_gen_op1(TCGContext *, TCGOpcode, TCGArg); void tcg_gen_op2(TCGContext *, TCGOpcode, TCGArg, TCGArg); void tcg_gen_op3(TCGContext *, TCGOpcode, TCGArg, TCGArg, TCGArg); |