]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Fix a panic message.
authorFlorian Krohm <flo2030@eich-krohm.de>
Wed, 30 Jul 2025 14:44:40 +0000 (14:44 +0000)
committerFlorian Krohm <flo2030@eich-krohm.de>
Wed, 30 Jul 2025 14:44:40 +0000 (14:44 +0000)
That code snippet is executed for both Iend_BE and Iend_LE.

memcheck/mc_translate.c

index 05e6d59afa516e3cf9774c1f529f05427ab1a366..b4e499cc00c0ad024191e6685eb9a1d2b76df633 100644 (file)
@@ -6064,7 +6064,7 @@ void do_shadow_Store ( MCEnv* mce,
          case Ity_I32:  c = IRConst_U32 (V_BITS32_DEFINED); break;
          case Ity_I16:  c = IRConst_U16 (V_BITS16_DEFINED); break;
          case Ity_I8:   c = IRConst_U8  (V_BITS8_DEFINED);  break;
-         default:       VG_(tool_panic)("memcheck:do_shadow_Store(LE)");
+         default:       VG_(tool_panic)("memcheck:do_shadow_Store");
       }
       vdata = IRExpr_Const( c );
    }