diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-06-05 19:56:44 +0200 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2023-06-05 12:20:16 -0700 |
commit | a7f6911c127b1dd1b8764e03b0ebcf0a227a15e4 (patch) | |
tree | 5e6d2b1861f9c1125b829afb2582e94a394692e5 /tcg | |
parent | e7cd7a3916ac50378479b773057100683414eec4 (diff) | |
download | qemu-a7f6911c127b1dd1b8764e03b0ebcf0a227a15e4.zip qemu-a7f6911c127b1dd1b8764e03b0ebcf0a227a15e4.tar.gz qemu-a7f6911c127b1dd1b8764e03b0ebcf0a227a15e4.tar.bz2 |
tcg/tcg-op-vec: Remove left over _link_error() definitions
In commit d56fea79f9 ("tcg: Move TCG_{LOW,HIGH} to tcg-internal.h")
we replaced the "_link_error" definitions with modern QEMU_ERROR()
attribute markup. We covered tcg-op.c but forgot to completely
clean tcg-op-vec.c. Do it now.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-Id: <20230605175647.88395-3-philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg')
-rw-r--r-- | tcg/tcg-op-vec.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tcg/tcg-op-vec.c b/tcg/tcg-op-vec.c index 35d67ee..64bc8a2 100644 --- a/tcg/tcg-op-vec.c +++ b/tcg/tcg-op-vec.c @@ -24,17 +24,6 @@ #include "tcg/tcg-mo.h" #include "tcg-internal.h" - -/* Reduce the number of ifdefs below. This assumes that all uses of - TCGV_HIGH and TCGV_LOW are properly protected by a conditional that - the compiler can eliminate. */ -#if TCG_TARGET_REG_BITS == 64 -extern TCGv_i32 TCGV_LOW_link_error(TCGv_i64); -extern TCGv_i32 TCGV_HIGH_link_error(TCGv_i64); -#define TCGV_LOW TCGV_LOW_link_error -#define TCGV_HIGH TCGV_HIGH_link_error -#endif - /* * Vector optional opcode tracking. * Except for the basic logical operations (and, or, xor), and |