Changes in directory llvm/lib/Support:

StringMap.cpp updated: 1.12 -> 1.13
---
Log message:

stringmap memory managed with malloc now


---
Diffs of the changes:  (+1 -1)

 StringMap.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/Support/StringMap.cpp
diff -u llvm/lib/Support/StringMap.cpp:1.12 llvm/lib/Support/StringMap.cpp:1.13
--- llvm/lib/Support/StringMap.cpp:1.12 Tue Apr  3 19:44:31 2007
+++ llvm/lib/Support/StringMap.cpp      Wed Apr  4 12:24:28 2007
@@ -227,7 +227,7 @@
     }
   }
   
-  delete[] TheTable;
+  free(TheTable);
   
   TheTable = NewTableArray;
   NumBuckets = NewSize;



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to