Skip to content

Commit

Permalink
Remove non-ASCII characters
Browse files Browse the repository at this point in the history
They aren't non-Latin, so they don't contribute anything.
  • Loading branch information
hainest committed Apr 8, 2024
1 parent ba11761 commit 70a8360
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dyninstAPI/wrapFunction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ int main(int argc, char** argv) {

std::vector<st::Symbol*> syms;
symtab->findSymbol(syms, orig_func,
st::Symbol::ST_UNKNOWN, // Dont specify type
st::Symbol::ST_UNKNOWN, // Don't specify type
st::NameType::prettyName, // Look for demangled symbol name
false, // Not regular expression
false, // Dont check case
false, // Don't check case
true); // Include undefined symbols

if(syms.size() != 1) {
Expand Down
2 changes: 1 addition & 1 deletion instrumentMemoryAccess/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
functions 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
Expand Down
2 changes: 1 addition & 1 deletion memoryAccessCounter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
functions 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
Expand Down

0 comments on commit 70a8360

Please sign in to comment.