commit | 12ba806c5d9ab0b45e41d7dc3d7af235f87d5e7e | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Wed Apr 04 17:24:28 2007 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Wed Apr 04 17:24:28 2007 +0000 |
tree | 00b45342aa583c62f8e9307a87ef7582aa4f2f17 | |
parent | 86796bec503a0002a6587597e9ee6b6d3048a322 [diff] [blame] |
stringmap memory managed with malloc now git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35666 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Support/StringMap.cpp b/lib/Support/StringMap.cpp index e7263e2..ae0dca7 100644 --- a/lib/Support/StringMap.cpp +++ b/lib/Support/StringMap.cpp
@@ -227,7 +227,7 @@ } } - delete[] TheTable; + free(TheTable); TheTable = NewTableArray; NumBuckets = NewSize;