Question about tvmc codegen

Hi,

I use tvmc to compile yolo and to generate c code.
tvmc cmd:
python3 -m tvm.driver.tvmc compile --target=cmsis-nn,c --target-cmsis-nn-mcpu=cortex-m7 --target-c-mcpu=cortex-m7 --executor=aot --executor-aot-interface-api=c --executor-aot-unpacked-api=1 --runtime=crt --pass-config tir.disable_vectorize=1 --pass-config tir.usmp.enable=1 --pass-config tir.usmp.algorithm=hill_climb -f mlf $1
And found there are some unused constant were generated.
below picture is part of the constant generated by codegen, the red parts is unused in the generated c source files.

For saving memory, can codegen not to generate these unused constant?

Thanks~~