mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-21 23:17:16 +00:00
Fix spelling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9027 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
//===-- GrapAuxillary.cpp- Auxillary functions on graph ----------*- C++ -*--=//
|
||||
//===-- GrapAuxiliary.cpp- Auxiliary functions on graph ----------*- C++ -*--=//
|
||||
//
|
||||
//auxillary function associated with graph: they
|
||||
//auxiliary function associated with graph: they
|
||||
//all operate on graph, and help in inserting
|
||||
//instrumentation for trace generation
|
||||
//
|
||||
@@ -132,7 +132,7 @@ int valueAssignmentToEdges(Graph& g, map<Node *, int> nodePriority,
|
||||
}
|
||||
|
||||
//This is a helper function to get the edge increments
|
||||
//This is used in conjuntion with inc_DFS
|
||||
//This is used in conjunction with inc_DFS
|
||||
//to get the edge increments
|
||||
//Edge increment implies assigning a value to all the edges in the graph
|
||||
//such that if we traverse along any path from root to exit, and
|
||||
@@ -144,7 +144,7 @@ static int inc_Dir(Edge e, Edge f){
|
||||
if(e.isNull())
|
||||
return 1;
|
||||
|
||||
//check that the edges must have atleast one common endpoint
|
||||
//check that the edges must have at least one common endpoint
|
||||
assert(*(e.getFirst())==*(f.getFirst()) ||
|
||||
*(e.getFirst())==*(f.getSecond()) ||
|
||||
*(e.getSecond())==*(f.getFirst()) ||
|
||||
|
||||
Reference in New Issue
Block a user