meson: remove dead assignments
Found with "muon analyze". Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
eccae02d99
commit
e3af71e900
@ -2,7 +2,7 @@ plugin_ldflags = []
|
|||||||
# Modules need more symbols than just those in plugins/qemu-plugins.symbols
|
# Modules need more symbols than just those in plugins/qemu-plugins.symbols
|
||||||
if not enable_modules
|
if not enable_modules
|
||||||
if targetos == 'darwin'
|
if targetos == 'darwin'
|
||||||
qemu_plugins_symbols_list = configure_file(
|
configure_file(
|
||||||
input: files('qemu-plugins.symbols'),
|
input: files('qemu-plugins.symbols'),
|
||||||
output: 'qemu-plugins-ld64.symbols',
|
output: 'qemu-plugins-ld64.symbols',
|
||||||
capture: true,
|
capture: true,
|
||||||
|
@ -632,7 +632,7 @@ test('fp-test-mulAdd', fptest,
|
|||||||
['f16_mulAdd', 'f32_mulAdd', 'f64_mulAdd', 'f128_mulAdd'],
|
['f16_mulAdd', 'f32_mulAdd', 'f64_mulAdd', 'f128_mulAdd'],
|
||||||
suite: ['softfloat-slow', 'softfloat-ops-slow', 'slow'], timeout: 90)
|
suite: ['softfloat-slow', 'softfloat-ops-slow', 'slow'], timeout: 90)
|
||||||
|
|
||||||
fpbench = executable(
|
executable(
|
||||||
'fp-bench',
|
'fp-bench',
|
||||||
['fp-bench.c', '../../fpu/softfloat.c'],
|
['fp-bench.c', '../../fpu/softfloat.c'],
|
||||||
link_with: [libtestfloat, libsoftfloat],
|
link_with: [libtestfloat, libsoftfloat],
|
||||||
|
@ -215,18 +215,18 @@ test('QAPI schema regression tests', python,
|
|||||||
|
|
||||||
diff = find_program('diff')
|
diff = find_program('diff')
|
||||||
|
|
||||||
qapi_doc = custom_target('QAPI doc',
|
custom_target('QAPI doc',
|
||||||
output: ['doc-good-qapi-commands.c', 'doc-good-qapi-commands.h',
|
output: ['doc-good-qapi-commands.c', 'doc-good-qapi-commands.h',
|
||||||
'doc-good-qapi-emit-events.c', 'doc-good-qapi-emit-events.h',
|
'doc-good-qapi-emit-events.c', 'doc-good-qapi-emit-events.h',
|
||||||
'doc-good-qapi-events.c', 'doc-good-qapi-events.h',
|
'doc-good-qapi-events.c', 'doc-good-qapi-events.h',
|
||||||
'doc-good-qapi-init-commands.c', 'doc-good-qapi-init-commands.h',
|
'doc-good-qapi-init-commands.c', 'doc-good-qapi-init-commands.h',
|
||||||
'doc-good-qapi-introspect.c', 'doc-good-qapi-introspect.h',
|
'doc-good-qapi-introspect.c', 'doc-good-qapi-introspect.h',
|
||||||
'doc-good-qapi-types.c', 'doc-good-qapi-types.h',
|
'doc-good-qapi-types.c', 'doc-good-qapi-types.h',
|
||||||
'doc-good-qapi-visit.c', 'doc-good-qapi-visit.h' ],
|
'doc-good-qapi-visit.c', 'doc-good-qapi-visit.h' ],
|
||||||
input: files('doc-good.json'),
|
input: files('doc-good.json'),
|
||||||
command: [ qapi_gen, '-o', meson.current_build_dir(),
|
command: [ qapi_gen, '-o', meson.current_build_dir(),
|
||||||
'-p', 'doc-good-', '@INPUT0@' ],
|
'-p', 'doc-good-', '@INPUT0@' ],
|
||||||
depend_files: qapi_gen_depends)
|
depend_files: qapi_gen_depends)
|
||||||
|
|
||||||
if build_docs
|
if build_docs
|
||||||
# Test the document-comment document generation code by running a test schema
|
# Test the document-comment document generation code by running a test schema
|
||||||
|
Loading…
Reference in New Issue
Block a user