diff --git a/dyninstAPI/wrapFunction.cpp b/dyninstAPI/wrapFunction.cpp index f09e01b..67fd327 100644 --- a/dyninstAPI/wrapFunction.cpp +++ b/dyninstAPI/wrapFunction.cpp @@ -59,10 +59,10 @@ int main(int argc, char** argv) { std::vector syms; symtab->findSymbol(syms, orig_func, - st::Symbol::ST_UNKNOWN, // Don’t specify type + st::Symbol::ST_UNKNOWN, // Don't specify type st::NameType::prettyName, // Look for demangled symbol name false, // Not regular expression - false, // Don’t check case + false, // Don't check case true); // Include undefined symbols if(syms.size() != 1) { diff --git a/instrumentMemoryAccess/README.md b/instrumentMemoryAccess/README.md index 81a2510..6feba88 100644 --- a/instrumentMemoryAccess/README.md +++ b/instrumentMemoryAccess/README.md @@ -6,7 +6,7 @@ This is similar to Memory Access Counter, but **all** functions in the binary are instrumented here. This example illustrates how to use Dyninst to iterate over a -function’s control flow graph and inspect instructions. These are steps +function's control flow graph and inspect instructions. These are steps that would usually be part of a larger data flow or control flow analysis. Specifically, this example collects every basic block in a function, iterates over them, and counts the number of instructions that diff --git a/memoryAccessCounter/README.md b/memoryAccessCounter/README.md index d7b8d4b..a53be5c 100644 --- a/memoryAccessCounter/README.md +++ b/memoryAccessCounter/README.md @@ -6,7 +6,7 @@ This example is similar to Instrument Memory Access, but only one function is instrumented here. This example illustrates how to use Dyninst to iterate over a -function’s control flow graph and inspect instructions. These are steps +function's control flow graph and inspect instructions. These are steps that would usually be part of a larger data flow or control flow analysis. Specifically, this example collects every basic block in a function, iterates over them, and counts the number of instructions that