]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Get rid of nvidia_moan(); soon we might not have anything to moan about.
authorJulian Seward <jseward@acm.org>
Mon, 30 Sep 2002 00:57:24 +0000 (00:57 +0000)
committerJulian Seward <jseward@acm.org>
Mon, 30 Sep 2002 00:57:24 +0000 (00:57 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1134

coregrind/vg_include.h
coregrind/vg_main.c
coregrind/vg_to_ucode.c

index 2a04b31ea7f023027caa564b377ee0e7c07e4f03..a571917f7176c83ef101440ccb4ccd6a42edf5bb 100644 (file)
@@ -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.  */
index 80725ed2a4572a03bb965efd40d28962d3fd3509..661f19d49b10b6e32ec649e1dacb447698c40826 100644 (file)
@@ -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).
    ------------------------------------------------------------------ */
index 3540bf07a77f15a50eeb65a81fe682b150933196..8b14ff49c7f18bd0c9c98a5d8d30b49c03a0efcb 100644 (file)
@@ -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");
    }