We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a mull configuration working fairly well. When I add - ccx_logical_and_to_or I get this error message during exit.
- ccx_logical_and_to_or
[error] Uh oh! Mull corrupted LLVM module. Please, report the following error message here https://github.com/mull-project/mull/issues Underlying error message: Instruction does not dominate all uses! %27 = call noundef zeroext i1 @_ZNK5boost5multi16elements_range_tIPKdNS0_8layout_tILl1ElEEEeqIS3_S5_EEbRKNS1_IT_T0_EE(ptr noundef nonnull align 8 dereferenceable(56) %7, ptr noundef nonnull align 8 dereferenceable(56) %8), !dbg !44053 %30 = phi i1 [ %27, %28 ], [ %27, %24 ], !dbg !44054 The module was corrupted by 'cxx_logical_and_to_or' mutator. To disable it, add the following: ignoreMutators: - cxx_logical_and_to_or to the config file (/home/correaa/boost-multi/mull.yml) [error] Error messages are treated as fatal errors. Exiting now.
The same thing happens with - cxx_logical_or_to_and
- cxx_logical_or_to_and
This is the full mull.yml file:
mull.yml
mutators: - cxx_add_assign_to_sub_assign # Replaces += with -= - cxx_add_to_sub # Replaces + with - - cxx_and_assign_to_or_assign # Replaces &= with |= - cxx_and_to_or # Replaces & with | - cxx_assign_const # Replaces `a = b` with `a = 42` - cxx_bitwise_not_to_noop # Replaces ~x with x - cxx_div_assign_to_mul_assign # Replaces /= with *= - cxx_div_to_mul # Replaces / with * - cxx_eq_to_ne # Replaces == with != - cxx_ge_to_gt # Replaces >= with > - cxx_ge_to_lt # Replaces >= with < - cxx_gt_to_ge # Replaces > with >= - cxx_gt_to_le # Replaces > with <= - cxx_init_const # Replaces ‘T a = b’ with ‘T a = 42’ - cxx_le_to_gt # Replaces <= with > - cxx_le_to_lt # Replaces <= with < - cxx_logical_and_to_or # Replaces && with || #- cxx_logical_or_to_and # Replaces || with && # The module was corrupted by 'cxx_logical_or_to_and' mutator. - cxx_lshift_assign_to_rshift_assign # Replaces <<= with >>= - cxx_lshift_to_rshift # Replaces << with >> - cxx_lt_to_ge # Replaces < with >= - cxx_lt_to_le # Replaces < with <= # TODO(correaa) investigate why this mutant survives with the range.contains function - cxx_minus_to_noop # Replaces -x with x - cxx_mul_assign_to_div_assign # Replaces *= with /= - cxx_mul_to_div # Replaces * with / - cxx_ne_to_eq # Replaces != with == - cxx_or_assign_to_and_assign # Replaces |= with &= - cxx_or_to_and # Replaces | with & - cxx_post_dec_to_post_inc # Replaces x– with x++ - cxx_post_inc_to_post_dec # Replaces x++ with x– - cxx_pre_dec_to_pre_inc # Replaces –x with ++x - cxx_pre_inc_to_pre_dec # Replaces ++x with –x - cxx_rem_assign_to_div_assign # Replaces %= with /= - cxx_rem_to_div # Replaces % with / - cxx_remove_negation # Replaces !a with a - cxx_remove_void_call # Removes calls to a function returning void - cxx_replace_scalar_call # Replaces call to a function with 42 - cxx_rshift_assign_to_lshift_assign # Replaces >>= with <<= - cxx_rshift_to_lshift # Replaces << with >> - cxx_sub_assign_to_add_assign # Replaces -= with += - cxx_sub_to_add # Replaces - with + - cxx_xor_assign_to_or_assign # Replaces ^= with |= - cxx_xor_to_or # Replaces ^ with | timeout: 1000 # in milliseconds debug: slowIRVerification: true quiet: true # additional logging? excludePaths: - .*test.*
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a mull configuration working fairly well.
When I add
- ccx_logical_and_to_or
I get this error message during exit.The same thing happens with
- cxx_logical_or_to_and
This is the full
mull.yml
file:The text was updated successfully, but these errors were encountered: