Fix grammar

llvm-svn: 10968
This commit is contained in:
Chris Lattner 2004-01-23 01:42:16 +00:00
parent 241ed4c500
commit f0406a9739
1 changed files with 2 additions and 2 deletions

View File

@ -149,7 +149,7 @@ class DSCallSite {
const hash_map<const DSNode*, DSNode*> &NodeMap) { const hash_map<const DSNode*, DSNode*> &NodeMap) {
if (DSNode *N = Src.getNode()) { if (DSNode *N = Src.getNode()) {
hash_map<const DSNode*, DSNode*>::const_iterator I = NodeMap.find(N); hash_map<const DSNode*, DSNode*>::const_iterator I = NodeMap.find(N);
assert(I != NodeMap.end() && "Not not in mapping!"); assert(I != NodeMap.end() && "Node not in mapping!");
NH.setOffset(Src.getOffset()); NH.setOffset(Src.getOffset());
NH.setNode(I->second); NH.setNode(I->second);
@ -160,7 +160,7 @@ class DSCallSite {
const hash_map<const DSNode*, DSNodeHandle> &NodeMap) { const hash_map<const DSNode*, DSNodeHandle> &NodeMap) {
if (DSNode *N = Src.getNode()) { if (DSNode *N = Src.getNode()) {
hash_map<const DSNode*, DSNodeHandle>::const_iterator I = NodeMap.find(N); hash_map<const DSNode*, DSNodeHandle>::const_iterator I = NodeMap.find(N);
assert(I != NodeMap.end() && "Not not in mapping!"); assert(I != NodeMap.end() && "Node not in mapping!");
NH.setOffset(Src.getOffset()+I->second.getOffset()); NH.setOffset(Src.getOffset()+I->second.getOffset());
NH.setNode(I->second.getNode()); NH.setNode(I->second.getNode());