From: Julian Seward Date: Mon, 30 Sep 2002 00:57:24 +0000 (+0000) Subject: Get rid of nvidia_moan(); soon we might not have anything to moan about. X-Git-Tag: svn/VALGRIND_1_9_4~293 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f0e299960ba8ba04b581fda8eba14140b6fdf661;p=thirdparty%2Fvalgrind.git Get rid of nvidia_moan(); soon we might not have anything to moan about. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1134 --- diff --git a/coregrind/vg_include.h b/coregrind/vg_include.h index 2a04b31ea7..a571917f71 100644 --- a/coregrind/vg_include.h +++ b/coregrind/vg_include.h @@ -1047,7 +1047,6 @@ extern void VG_(copy_m_state_static_to_baseBlock) ( void ); Prints a msg and aborts. */ extern void VG_(unimplemented) ( Char* msg ) __attribute__((__noreturn__)); -extern void VG_(nvidia_moan) ( void ); /* The stack on which Valgrind runs. We can't use the same stack as the simulatee -- that's an important design decision. */ diff --git a/coregrind/vg_main.c b/coregrind/vg_main.c index 80725ed2a4..661f19d49b 100644 --- a/coregrind/vg_main.c +++ b/coregrind/vg_main.c @@ -1516,15 +1516,6 @@ void VG_(unimplemented) ( Char* msg ) } -void VG_(nvidia_moan) ( void) -{ - VG_(message)(Vg_UserMsg, - "The following failure _might_ be caused by linking to NVidia's\n " - "libGL.so, so avoiding it, if you can, _might_ help you. For example,\n " - "re-build any Qt libraries you are using without OpenGL support."); -} - - /* --------------------------------------------------------------------- Sanity check machinery (permanently engaged). ------------------------------------------------------------------ */ diff --git a/coregrind/vg_to_ucode.c b/coregrind/vg_to_ucode.c index 3540bf07a7..8b14ff49c7 100644 --- a/coregrind/vg_to_ucode.c +++ b/coregrind/vg_to_ucode.c @@ -4465,8 +4465,6 @@ static Addr disInstr ( UCodeBlock* cb, Addr eip, Bool* isEnd ) default: VG_(printf)("disInstr: unhandled opcode 0x%x then 0x%x\n", (UInt)opc, (UInt)getUChar(eip)); - if (opc == 0x8C) - VG_(nvidia_moan)(); VG_(panic)("unhandled x86 opcode"); }