hanchenye-llvm-project/lld/lib
Rui Ueyama a821d32729 Fix unsafe memory access
The following expression

  m[i] = m[j]

where m is a DenseMap and i != j is not safe. m[j] returns a
reference, which would be invalidated when a rehashing occurs.
If rehashing occurs to make room for m[i], m[j] becomes
invalid, and that invalid reference would be used as the RHS
value of the expression.

llvm-svn: 213969
2014-07-25 19:46:31 +00:00
..
Core Change the signature of insertElementAt and rename addInputElementFront 2014-07-24 00:08:22 +00:00
Driver Change the signature of insertElementAt and rename addInputElementFront 2014-07-24 00:08:22 +00:00
Passes Fix unsafe memory access 2014-07-25 19:46:31 +00:00
ReaderWriter [mach-o] Add support for LC_DATA_IN_CODE 2014-07-24 23:06:56 +00:00
CMakeLists.txt
Makefile Initial set of Makefiles 2014-06-04 09:54:07 +00:00