Go to file
Eric Fiselier 54f0cda625 Fix LWG issue 2469 - Use piecewise construction in map::operator[].
map's allocator may only be used to construct objects of 'value_type',
or in this case 'pair<const Key, Value>'. In order to respect this requirement
in operator[], which requires default constructing the 'mapped_type', we have
to use pair's piecewise constructor with '(tuple<Kep>, tuple<>)'.

Unfortunately we still need to provide a fallback implementation for C++03
since we don't have <tuple>. Even worse this fallback is the last remaining
user of '__hash_map_node_destructor' and '__construct_node_with_key'.

This patch also switches try_emplace over to __tree.__emplace_unique_key_args.

llvm-svn: 264989
2016-03-31 03:13:37 +00:00
clang [DarwinDriver] Increase the number of valid digits for ld64 version string. 2016-03-31 02:45:46 +00:00
clang-tools-extra Update copyright year to 2016. 2016-03-30 22:38:47 +00:00
compiler-rt Update copyright year to 2016. 2016-03-30 22:38:50 +00:00
debuginfo-tests New round of fixes for "Always compile debuginfo-tests for the host triple" 2014-10-18 23:47:59 +00:00
libclc Update copyright year to 2016. 2016-03-30 22:39:03 +00:00
libcxx Fix LWG issue 2469 - Use piecewise construction in map::operator[]. 2016-03-31 03:13:37 +00:00
libcxxabi Update copyright year to 2016. 2016-03-30 22:40:47 +00:00
libunwind [AArch64] Fix libunwind build when using GNU assembler 2016-02-11 21:22:57 +00:00
lld Revert "Remove useless unreachable. Switch coverage already gives us this. NFC" 2016-03-31 01:23:23 +00:00
lldb Add --help and --long-help options to 'command alias' such that one can now specify a help string for an alias as they are defining it 2016-03-31 01:10:54 +00:00
llgo [llgo] add USES_TERMINAL option to check-libgo 2016-03-30 00:29:33 +00:00
llvm [PowerPC] Load two floats directly instead of using one 64-bit integer load 2016-03-31 02:56:05 +00:00
openmp Fix bug when KMP_USE_ADAPTIVE_LOCKS is 0 2016-03-30 21:50:59 +00:00
polly Update copyright year to 2016. 2016-03-30 22:41:38 +00:00