]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
s/IRBB/IRSB/
authorNicholas Nethercote <njn@valgrind.org>
Mon, 5 Feb 2007 23:23:55 +0000 (23:23 +0000)
committerNicholas Nethercote <njn@valgrind.org>
Mon, 5 Feb 2007 23:23:55 +0000 (23:23 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@6570

include/pub_tool_tooliface.h

index 88d04dd79f6c796fa507b88ab844d9a492a3c53d..77e6761e3e34d0f19fbc592c61c7eaf86406f9e1 100644 (file)
@@ -160,7 +160,7 @@ extern void VG_(basic_tool_funcs)(
    /* --- Further comments about the IR that your --- */
    /* --- instrumentation function will receive. --- */
    /*
-      In the incoming IRBB, the IR for each instruction begins with an
+      In the incoming IRSB, the IR for each instruction begins with an
       IRStmt_IMark, which states the address and length of the
       instruction from which this IR came.  This makes it easy for
       profiling-style tools to know precisely which guest code
@@ -177,7 +177,7 @@ extern void VG_(basic_tool_funcs)(
       You should therefore 
 
       (1) copy any IR preceding the first IMark verbatim to the start
-          of the output IRBB.
+          of the output IRSB.
 
       (2) not try to instrument it or modify it in any way.