The Week Of Monday 30 September 2013 Archives by subject
Starting: Mon Sep 30 00:17:20 PDT 2013
Ending: Sun Oct 6 22:13:49 PDT 2013
Messages: 497
- [cfe-dev] Question about optimization of new and delete
Jonathan Sauer
- [clang-tools-extra] r191667 - clang-apply-replacements: Add code formatting functionality
Edwin Vane
- [clang-tools-extra] r191669 - Fix build by adding dep on TransformUtils
Edwin Vane
- [clang-tools-extra] r191754 - clang-apply-replacements: Fixing doxygen warning
Edwin Vane
- [clang-tools-extra] r192032 - clang-modernize: Apply replacements using clang-apply-replacements
Edwin Vane
- [clang-tools-extra] r192033 - clang-modernize: Fix clang-apply-replacements invocation bug
Edwin Vane
- [libcxx] Patch/RFC: Avoid using ::operator new in the default allocator
Marshall Clow
- [libcxx] Patch/RFC: Avoid using ::operator new in the default allocator
Benjamin Kramer
- [libcxx] Patch/RFC: Avoid using ::operator new in the default allocator
Howard Hinnant
- [libcxx] Patch/RFC: Avoid using ::operator new in the default allocator
Howard Hinnant
- [libcxx] Patch/RFC: Avoid using ::operator new in the default allocator
Chandler Carruth
- [libcxx] Patch/RFC: Avoid using ::operator new in the default allocator
Howard Hinnant
- [libcxx] Patch/RFC: Avoid using ::operator new in the default allocator
Chandler Carruth
- [libcxx] Patch/RFC: Avoid using ::operator new in the default allocator
Howard Hinnant
- [libcxx] r191657 - [CMake] Put libcxx-specific module directories to the front of CMAKE_MODULE_PATH.
Alexey Samsonov
- [libcxx] r191692 - SCARY/N2913 iterator support between the multi and non-multi versions of the associative and unordered containers. I beleive lack of support for this was accidentally recently introduced (by me) and this is fixing a regression. This time tests are put in to prevent such a regression in the future.
Howard Hinnant
- [libcxx] r191705 - Part 8 of LWG Issue 2210' unordered_set and unordered multiset; this got missed when I went on vacation
Marshall Clow
- [libcxx] r191756 - Remove non-printable chars that snuck in back in July; thanks to Yaron Keren for the catch
Marshall Clow
- [libcxx] r191814 - Explicitly specify -Wno-error if LIBCXX_ENABLE_WERROR is false.
Alexey Samsonov
- [libcxx] r191814 - Explicitly specify -Wno-error if LIBCXX_ENABLE_WERROR is false.
David Blaikie
- [libcxx] r191814 - Explicitly specify -Wno-error if LIBCXX_ENABLE_WERROR is false.
Richard Smith
- [libcxx] r191814 - Explicitly specify -Wno-error if LIBCXX_ENABLE_WERROR is false.
Alexey Samsonov
- [libcxx] r191814 - Explicitly specify -Wno-error if LIBCXX_ENABLE_WERROR is false.
Howard Hinnant
- [libcxx] r191930 - Make it possible to run the test suite when built as part of LLVM.
Peter Collingbourne
- [libcxx] r191931 - Re-add bad_cast and bad_typeid default ctor definitions under libsupc++.
Peter Collingbourne
- [libcxx] r191935 - libc++abi no longer has a cxa_demangle.h header.
Peter Collingbourne
- [libcxx] r191980 - G M: Provides the _LIBCPP_WARNING macro, to be used for MSVC only, since that compiler doesn't support #warning.
Howard Hinnant
- [libcxx] r191981 - G M: Fix libcxx's detection of rtti disablement for g++.exe and cl.exe. When RTTI is NOT enabled, _LIBCPP_NO_RTTI is defined.
Howard Hinnant
- [libcxx] r191987 - G M: Changes all references to "x inline" to "inline x" where x = _libcpp_always_inline or _libcpp_inline_visibility macros.
Howard Hinnant
- [libcxx] r191988 - G M: A small patch to fix a couple of warnings in stdexcept.cpp for cl.exe which does not support #pragma visibility.
Howard Hinnant
- [libcxx] r192007 - G M: The attached patch is for libcxx's new.cpp and __config files. The patch's intent is to make new.cpp compile using MS's cl.exe compiler without changing the meaning of anything for any other compiler.
Howard Hinnant
- [libcxx] r192010 - G M: Attached is a patch for libcxx's cmake file.
Howard Hinnant
- [libcxx] r192012 - G M: Remove unneeded warnings in buildit that are hindering porting.
Howard Hinnant
- [libcxx] r192038 - Implement LWG issue 2275 'forward_as_tuple should be constexpr'
Marshall Clow
- [libcxx] r192047 - Mark namespaces for user defined literals as 'inline'
Marshall Clow
- [libcxx] r192048 - Implement literal suffixes for compled
Marshall Clow
- [libcxx] r192049 - LWG Issue 2247: Implement type trait 'is_null_pointer'
Marshall Clow
- [libcxx] r192051 - Add tests making sure that optional<T>s can be compared at compile time; this functionality was enabled by N3789
Marshall Clow
- [libcxx] r192057 - Updated status post-Chicago
Marshall Clow
- [libcxx] r192058 - LWG Issue 2247
Marshall Clow
- [libcxx] r192068 - Yaron Keren: Add missing comment.
Howard Hinnant
- [libcxx] r192071 - Use _LIBCPP_NEW_DELETE_VIS instead of LIBCPP_FUNC_VIS in src/new.cpp.
Howard Hinnant
- [libcxx] r192072 - G M: Rename local variable from __except to avoid MSVC keyword clash.
Howard Hinnant
- [libcxx] r192073 - G M: 1. It changes the temp file handling to use the template and the current directory for windows, matching how it works on other platforms.
Howard Hinnant
- [libcxx] r192074 - Eliminate more symbols multiply defined between libsupc++ and libc++.
Peter Collingbourne
- [libcxx] r192075 - Make it possible to link against libstdc++ as well as libsupc++ with CMake.
Peter Collingbourne
- [libcxx] r192076 - Implement std::exception_ptr under libsupc++.
Peter Collingbourne
- [libcxx] r192077 - Silence the unused function warning in exception.cpp.
Peter Collingbourne
- [libcxx] r192080 - Apparently, I don't know the difference between 'left' and 'right'. Swap parameters named 'lhs' and 'rhs' so that they correctly refer to the 'left hand side' and 'right hand side' of comparisons. No functionality change. Thanks to Arthur O'Dwyer for pointing this out to me.
Marshall Clow
- [libcxx] r192085 - Marked issue 2284 as complete
Marshall Clow
- [libcxx] type_info/bad_cast observations relating to r191397
G M
- [libcxx] type_info/bad_cast observations relating to r191397
Chandler Carruth
- [libcxx] type_info/bad_cast observations relating to r191397
G M
- [libcxx] type_info/bad_cast observations relating to r191397
Chandler Carruth
- [libcxx] type_info/bad_cast observations relating to r191397
G M
- [libcxx] type_info/bad_cast observations relating to r191397
G M
- [libcxxabi][PATCH] unwinder
Nick Kledzik
- [libcxxabi][PATCH] unwinder
Dmitri Gribenko
- [libcxxabi][PATCH] unwinder
Nick Kledzik
- [libcxxabi][PATCH] unwinder
Joerg Sonnenberger
- [libcxxabi][PATCH] unwinder
Howard Hinnant
- [PATCH] [2/2] Add intrinsics for TBM instruction set
Yunzhong Gao
- [PATCH] [2/2] Change tbm bextr builtin function to take an i64imm parameter instead of i32imm.
Yunzhong Gao
- [PATCH] [2/2] Change tbm bextr builtin function to take an i64imm parameter instead of i32imm.
Craig Topper
- [PATCH] [2/2] Change tbm bextr builtin function to take an i64imm parameter instead of i32imm.
Yunzhong Gao
- [PATCH][AArch64] implement aarch64 neon load/store instructions class AdvSIMD (lselem)
Hao Liu
- [PATCH][AArch64] implement aarch64 neon load/store instructions class AdvSIMD (lselem)
Tim Northover
- [PATCH][AArch64] implement aarch64 neon load/store instructions class AdvSIMD (lselem)
Hao Liu
- [PATCH][AArch64] implement aarch64 neon load/store instructions class AdvSIMD (lselem)
Tim Northover
- [PATCH] [ARM] Add -fpu=none driver option
Amara Emerson
- [PATCH] [ARM] Add -fpu=none driver option
Tim Northover
- [PATCH] [ARM] Add -fpu=none driver option
Amara Emerson
- [PATCH] [ARM] Fix AArch32 and pre-v8 poly types to be unsigned
Bradley Smith
- [PATCH] [ARM] Fix AArch32 and pre-v8 poly types to be unsigned
Tim Northover
- [PATCH] [ARM] Fix AArch32 and pre-v8 poly types to be unsigned
Bradley Smith
- [PATCH] [libc++] Eliminate more symbols multiply defined between libsupc++ and libc++.
Peter Collingbourne
- [PATCH] [libc++] Eliminate more symbols multiply defined between libsupc++ and libc++.
Howard Hinnant
- [PATCH] [libc++] Eliminate more symbols multiply defined between libsupc++ and libc++.
Peter Collingbourne
- [PATCH] [libc++] Make it possible to link against libstdc++ as well as libsupc++ with CMake.
Peter Collingbourne
- [PATCH] [libc++] Make it possible to link against libstdc++ as well as libsupc++ with CMake.
Howard Hinnant
- [PATCH] [libc++] Make it possible to link against libstdc++ as well as libsupc++ with CMake.
Peter Collingbourne
- [PATCH] [libc++] Make std::deque instantiable with incomplete element type
Peter Collingbourne
- [patch] [libcxx[ test suite temp file and __config fix
G M
- [patch] [libcxx[ test suite temp file and __config fix
Marshall Clow
- [patch] [libcxx[ test suite temp file and __config fix
Howard Hinnant
- [patch] [libcxx[ test suite temp file and __config fix
G M
- [patch] [libcxx] #warning
Howard Hinnant
- [patch] [libcxx] _LIBCPP_NO_RTTI fix for g++.exe and cl.exe
Howard Hinnant
- [patch] [libcxx] _LIBCPP_WEAK
Howard Hinnant
- [patch] [libcxx] _LIBCPP_WEAK
G M
- [patch] [libcxx] _LIBCPP_WEAK
Howard Hinnant
- [patch] [libcxx] _LIBCPP_WEAK revision
G M
- [patch] [libcxx] _LIBCPP_WEAK revision
Howard Hinnant
- [patch] [libcxx] chrono.cpp revision
G M
- [patch] [libcxx] inline consistency
Howard Hinnant
- [patch] [libcxx] msvc cmake
Howard Hinnant
- [patch] [libcxx] pragma gcc visibility not supported by cl
Howard Hinnant
- [patch] [libcxx] VS keyword clash
G M
- [patch] [libcxx] VS keyword clash
Howard Hinnant
- [patch] [libcxx] win32 support, h intrinsic fixes.for cl/visual studio
G M
- [PATCH] [ms-cxxabi] Fix the calling convention for operator new in records
Eli Friedman
- [PATCH] [ms-cxxabi] Fix the calling convention for operator new in records
Richard Smith
- [PATCH] [OPENMP] Fix for parsing OpenMP directives with extra braces, brackets and parens
Alexey Bataev
- [PATCH] [PATCH] OpenMP firstprivate clause
Alexey Bataev
- [patch][pr17429] Do nothing in a null build if CLANG_ALWAYS_CHECK_VC_REV is OFF
Rafael Espíndola
- [patch][pr17429] Do nothing in a null build if CLANG_ALWAYS_CHECK_VC_REV is OFF
Jordan Rose
- [patch][pr17429] Do nothing in a null build if CLANG_ALWAYS_CHECK_VC_REV is OFF
Rafael Espíndola
- [patch][pr17429] Do nothing in a null build if CLANG_ALWAYS_CHECK_VC_REV is OFF
Jordan Rose
- [patch][pr17429] Do nothing in a null build if CLANG_ALWAYS_CHECK_VC_REV is OFF
Jordan Rose
- [patch][pr17429] Do nothing in a null build if CLANG_ALWAYS_CHECK_VC_REV is OFF
Rafael Espíndola
- [PATCH] [scan-build] Whitelist all -fXXXX options.
Liang Qi
- [PATCH] [scan-build] Whitelist all -fXXXX options.
Anna Zaks
- [PATCH] [scan-build] Whitelist all -fXXXX options.
Liang Qi
- [PATCH][StaticAnalyser] Replace magic strings for bug category with constant
Daniel Marjamäki
- [PATCH][StaticAnalyser] Replace magic strings for bug category with constant
Jordan Rose
- [PATCH] [StaticAnalyzer] Add 'clang_analyzer_warnIfReached'
Jared Grubb
- [PATCH] [StaticAnalyzer] Add 'clang_analyzer_warnIfReached'
Anna Zaks
- [PATCH] [StaticAnalyzer] Add 'clang_analyzer_warnIfReached'
Jordan Rose
- [PATCH] [StaticAnalyzer] Add 'clang_analyzer_warnIfReached'
Anna Zaks
- [PATCH] [StaticAnalyzer] Add 'clang_analyzer_warnIfReached'
Anna Zaks
- [PATCH] [StaticAnalyzer] Add 'clang_analyzer_warnIfReached'
Jared Grubb
- [PATCH] [StaticAnalyzer] Add 'clang_analyzer_warnIfReached'
Jordan Rose
- [PATCH] [StaticAnalyzer] Add 'clang_analyzer_warnIfReached'
Jared Grubb
- [PATCH] [StaticAnalyzer] Add 'clang_analyzer_warnIfReached'
Jordan Rose
- [PATCH] [StaticAnalyzer] New checker Sizeof on expression
Anders Rönnholm
- [PATCH] [StaticAnalyzer] New checker StringPlusChar
Anders Rönnholm
- [PATCH] [StaticAnalyzer] New checker StringPlusChar
Jordan Rose
- SV: [PATCH] [StaticAnalyzer] New checker StringPlusChar
Daniel Marjamäki
- [PATCH] [StaticAnalyzer] New checker StringPlusChar
Richard Smith
- SV: [PATCH] [StaticAnalyzer] New checker StringPlusChar
Daniel Marjamäki
- [PATCH] [StaticAnalyzer] New checker StringPlusChar
Jordan Rose
- SV: [PATCH] [StaticAnalyzer] New checker StringPlusChar
Anders Rönnholm
- [PATCH] [StaticAnalyzer] New checker StringPlusChar
Jordan Rose
- [PATCH] [StaticAnalyzer] New checker StringPlusChar
Richard Smith
- [PATCH] [WIP] clang-format: Enforce EOL at EOF as required by C standard
Alp Toker
- [PATCH] [WIP] clang-format: Enforce EOL at EOF as required by C standard
Daniel Jasper
- [PATCH] [WIP] clang-format: Enforce EOL at EOF as required by C standard
Manuel Klimek
- [PATCH] [WIP] clang-format: Enforce EOL at EOF as required by C standard
Daniel Jasper
- [PATCH] [WIP] clang-format: Enforce EOL at EOF as required by C standard
Alp Toker
- [PATCH] [WIP] clang-format: Enforce EOL at EOF as required by C standard
Daniel Jasper
- [PATCH] [WIP] clang-format: Enforce EOL at EOF as required by C standard
Alp Toker
- [PATCH] [WIP] clang-format: Enforce EOL at EOF as required by C standard
Alp Toker
- [PATCH] [WIP] clang-format: Enforce EOL at EOF as required by C standard
Daniel Jasper
- [PATCH] [WIP] clang-format: Enforce EOL at EOF as required by C standard
Alp Toker
- [PATCH] [WIP] clang-format: Enforce EOL at EOF as required by C standard
Alp Toker
- [PATCH] Abstract out parts of thunk emission code, add support for simple thunks for -cxx-abi microsoft
Timur Iskhodzhanov
- [PATCH] Abstract out parts of thunk emission code, add support for simple thunks for -cxx-abi microsoft
Timur Iskhodzhanov
- [PATCH] Abstract out parts of thunk emission code, add support for simple thunks for -cxx-abi microsoft
Timur Iskhodzhanov
- [PATCH] Abstract out parts of thunk emission code, add support for simple thunks for -cxx-abi microsoft
Reid Kleckner
- [PATCH] Abstract out parts of thunk emission code, add support for simple thunks for -cxx-abi microsoft
Timur Iskhodzhanov
- [PATCH] Abstract out parts of thunk emission code, add support for simple thunks for -cxx-abi microsoft
Timur Iskhodzhanov
- [PATCH] Added option to clang-format-diff.py to just output diff without changing files.
Alexander Kornienko
- [PATCH] Added option to clang-format-diff.py to just output diff without changing files.
Daniel Jasper
- [PATCH] Added option to clang-format-diff.py to just output diff without changing files.
Alexander Kornienko
- [PATCH] Added option to clang-format-diff.py to just output diff without changing files.
Alp Toker
- [PATCH] Adding diversity for security
Stephen Crane
- [PATCH] Adding diversity for security
David Majnemer
- [PATCH] Adding diversity for security
Stephen Crane
- [PATCH] Add more features for `requires` directive in module.map.
Alex Rønne Petersen
- [PATCH] Add more features for `requires` directive in module.map.
João Matos
- [PATCH] Allow nested lambdas in NSDMIs (i.e default initializers)
Doug Gregor
- [PATCH] ARM: do not emit lsrh/ashr for NEON shifts
Amaury de la Vieuville
- [PATCH] ARM: do not emit lsrh/ashr for NEON shifts
Tim Northover
- [PATCH] ARM: do not emit lsrh/ashr for NEON shifts
Tim Northover
- [PATCH] ARM: do not emit lsrh/ashr for NEON shifts
Amaury de la Vieuville
- [PATCH] ARM: do not emit lsrh/ashr for NEON shifts
Tim Northover
- [PATCH] ARM: do not emit lsrh/ashr for NEON shifts
Amaury de la Vieuville
- [PATCH] ARM: do not emit lsrh/ashr for NEON shifts
Tim Northover
- [PATCH] ARM: do not emit lsrh/ashr for NEON shifts
Amaury de la Vieuville
- [PATCH] ARM: Implement __attribute__((interrupt(...)))
Tim Northover
- [PATCH] ARM: Implement __attribute__((interrupt(...)))
Aaron Ballman
- [PATCH] ARM: Implement __attribute__((interrupt(...)))
Joey Gouly
- [PATCH] ARM: Implement __attribute__((interrupt(...)))
Tim Northover
- [PATCH] ARM: Implement __attribute__((interrupt(...)))
Jim Grosbach
- [PATCH] Attribute parsing following labels
Aaron Ballman
- [PATCH] Attribute parsing following labels
Richard Smith
- [PATCH] Attribute parsing following labels
Aaron Ballman
- [PATCH] Attribute parsing following labels
Richard Smith
- [PATCH] Attribute parsing following labels
Aaron Ballman
- [PATCH] C++1y: Implement n3599
Hristo Venev
- [PATCH] C++1y: Implement n3599
Richard Smith
- [PATCH] C++1y: Implement n3599
Richard Smith
- [PATCH] C++1y: Implement n3599
Hristo Venev
- [PATCH] C++1y: Implement n3599
Richard Smith
- [PATCH] C++1y: Implement n3599
Hristo Venev
- [PATCH] clang-apply-replacements: Add code-formatting post processing step
Edwin Vane
- [PATCH] clang-apply-replacements: Add code-formatting post processing step
Edwin Vane
- [PATCH] clang-format-diff: Don't reformat unmodified lines
Alp Toker
- [PATCH] clang-format-diff: Don't reformat unmodified lines
Daniel Jasper
- [PATCH] clang-format-diff: Don't reformat unmodified lines
Alp Toker
- [PATCH] clang-modernize: Apply replacements using clang-apply-replacements
Edwin Vane
- [PATCH] clang-modernize: Apply replacements using clang-apply-replacements
Ariel Bernal
- [PATCH] clang-modernize: Apply replacements using clang-apply-replacements
Tareq A. Siraj
- [PATCH] clang-modernize: Apply replacements using clang-apply-replacements
Edwin Vane
- [PATCH] clang-modernize: Apply replacements using clang-apply-replacements
Edwin Vane
- [PATCH] clang-modernize: Apply replacements using clang-apply-replacements
Guillaume Papin
- [PATCH] clang-modernize: Apply replacements using clang-apply-replacements
Edwin Vane
- [PATCH] clang-modernize: Apply replacements using clang-apply-replacements
Guillaume Papin
- [PATCH] clang-modernize: Apply replacements using clang-apply-replacements
Edwin Vane
- [PATCH] cleanup redundant variable NumArgsToCheck in lib/Sema/SemaOverload.cpp
Daniel Marjamäki
- [PATCH] cleanup redundant variable NumArgsToCheck in lib/Sema/SemaOverload.cpp
Daniel Marjamäki
- [PATCH] cleanup redundant variable NumArgsToCheck in lib/Sema/SemaOverload.cpp
Benjamin Kramer
- [PATCH] compile on Solaris 11
Vladimir Voskresensky
- [PATCH] compile on Solaris 11
Rafael Espíndola
- [PATCH] Constant expression evaluation support for __builtin_isinf
Karthik Bhat
- [PATCH] Constant expression evaluation support for __builtin_isinf
Richard Smith
- [PATCH] Constant expression evaluation support for __builtin_isinf
Karthik Bhat
- [PATCH] Don't break string literals inside preprocessor directives.
Alexander Kornienko
- [PATCH] Don't break string literals inside preprocessor directives.
Daniel Jasper
- [PATCH] Driver: Use the canonical command line arguments.
David Majnemer
- [PATCH] Driver: Use the canonical command line arguments.
David Majnemer
- [PATCH] Emit Clang version information into .comment section (Clang's part of implementation) [PART 1]
Katya Romanova
- [PATCH] Emit Clang version information into .comment section (Clang's part of implementation) [PART 1]
Rafael Espíndola
- [PATCH] Files in a compilation database using relative paths are not being transformed
Ariel Bernal
- [PATCH] Files in a compilation database using relative paths are not being transformed
Edwin Vane
- [PATCH] Files in a compilation database using relative paths are not being transformed
Ariel Bernal
- [PATCH] Find mingw-builds include directory
Yaron Keren
- [PATCH] Find mingw-builds include directory
Anton Korobeynikov
- [PATCH] Find mingw-builds include directory
Yaron Keren
- [PATCH] Find MingW TDM-GCC include directory
Yaron Keren
- [PATCH] Fix an instantiation error with nested generic lambdas and fptrs
Faisal Vali
- [PATCH] Fix crashes when creating global instances of polymorphic classes without fields
Timur Iskhodzhanov
- [PATCH] Fix crashes when creating global instances of polymorphic classes without fields
Timur Iskhodzhanov
- [PATCH] Fix crashes when creating global instances of polymorphic classes without fields
Reid Kleckner
- [PATCH] Fix crashes when creating global instances of polymorphic classes without fields
Timur Iskhodzhanov
- [PATCH] Fix linkage calculation of auto member functions returning lambdas
Faisal Vali
- [PATCH] Fix missed exception spec checks and crashes
Alp Toker
- [PATCH] Fix PR17382 - properly group virtual method overloads in the vftable
Timur Iskhodzhanov
- [PATCH] Fix PR17382 - properly group virtual method overloads in the vftable
Timur Iskhodzhanov
- [PATCH] Fix PR17382 - properly group virtual method overloads in the vftable
Reid Kleckner
- [PATCH] Fix PR17382 - properly group virtual method overloads in the vftable
Timur Iskhodzhanov
- [PATCH] Fix PR17382 - properly group virtual method overloads in the vftable
Reid Kleckner
- [PATCH] Fix PR17382 - properly group virtual method overloads in the vftable
Timur Iskhodzhanov
- [PATCH] Fix replacements for files with relative paths are not applied.
Ariel Bernal
- [PATCH] Fix replacements for files with relative paths are not applied.
Manuel Klimek
- [PATCH] Fix replacements for files with relative paths are not applied.
Ariel Bernal
- [PATCH] Fix replacements for files with relative paths are not applied.
Ariel Bernal
- [PATCH] Fix replacements for files with relative paths are not applied.
Manuel Klimek
- [PATCH] Fix replacements for files with relative paths are not applied.
Ariel Bernal
- [PATCH] Fix replacements for files with relative paths are not applied.
Ariel Bernal
- [PATCH] Fix replacements for files with relative paths are not applied.
Ariel Bernal
- [PATCH] Fix replacements for files with relative paths are not applied.
Manuel Klimek
- [PATCH] Fix replacements for files with relative paths are not applied.
Ariel Bernal
- [PATCH] Fix to PR8880 (clang dies processing a for loop).
Serge Pavlov
- [PATCH] For clang-cl, implement additional compatibility arguments (/vm, /GF, /GF-, /Zm, /bigobj).
David Ziman
- [PATCH] For clang-cl, implement additional compatibility arguments (/vm, /GF, /GF-, /Zm, /bigobj).
Reid Kleckner
- [PATCH] For clang-cl, implement additional compatibility arguments (/vm, /GF, /GF-, /Zm, /bigobj).
David Ziman
- [patch] Forward all -f* options to -cc1
Rafael Espíndola
- [patch] Forward all -f* options to -cc1
Tobias Grosser
- [PATCH] Implement aarch64 neon instruction class AdvSIMD (by element) - Clang
Tim Northover
- [PATCH] Implement aarch64 neon instruction class AdvSIMD (by element) - Clang
Jiangning Liu
- [PATCH] Implement aarch64 neon instruction class AdvSIMD (by element) - Clang
Tim Northover
- [PATCH] Implement aarch64 neon instruction class AdvSIMD (by element) - Clang
Jiangning Liu
- [PATCH] Implement aarch64 neon instruction class AdvSIMD (by element) - Clang
Jiangning Liu
- [PATCH] Implement aarch64 neon instruction class AdvSIMD (by element) - Clang
Ana Pazos
- [PATCH] Implement aarch64 neon instruction class AdvSIMD (by element) - Clang
Jiangning Liu
- [PATCH] Implement aarch64 neon instruction class AdvSIMD (by element) - LLVM
Tim Northover
- [PATCH] Implement aarch64 neon instruction class AdvSIMD (by element) - LLVM
Jiangning Liu
- [PATCH] Implement aarch64 neon instruction class AdvSIMD (by element) - LLVM
Jiangning Liu
- [PATCH] Implement aarch64 neon instruction class SIMD Across - Clang
Jiangning Liu
- [PATCH] Implement aarch64 neon instruction class SIMD Across - Clang
Jiangning Liu
- [PATCH] Implement aarch64 neon instruction class SIMD Across - Clang
Tim Northover
- [PATCH] Implement aarch64 neon instruction class SIMD Across - Clang
Jiangning Liu
- [PATCH] Implement aarch64 neon instruction class SIMD Across - Clang
Jiangning Liu
- [PATCH] Implement aarch64 neon instruction class SIMD Across - LLVM
Jiangning Liu
- [PATCH] Implement aarch64 neon instruction class SIMD Across - LLVM
Jiangning Liu
- [PATCH] Implement aarch64 neon instruction class SIMD Across - LLVM
Tim Northover
- [PATCH] Implement std::exception_ptr under libsupc++.
Peter Collingbourne
- [PATCH] Implement std::exception_ptr under libsupc++.
Howard Hinnant
- [PATCH] Implement std::exception_ptr under libsupc++.
Peter Collingbourne
- [PATCH] Implement transformations of non-capturing nested lambdas.
Doug Gregor
- [PATCH] Implement transformations of non-capturing nested lambdas.
Faisal Vali
- [PATCH] Implement transformations of non-capturing nested lambdas.
Faisal Vali
- [PATCH] Implement transformations of non-capturing nested lambdas.
Doug Gregor
- [PATCH] Implement transformations of non-capturing nested lambdas.
Faisal Vali
- [PATCH] Implement transformations of non-capturing nested lambdas.
Faisal Vali
- [PATCH] Implement transformations of non-capturing nested lambdas.
Doug Gregor
- [PATCH] Implement transformations of non-capturing nested lambdas.
Faisal Vali
- [PATCH] Implement transformations of non-capturing nested lambdas.
Douglas Gregor
- [PATCH] Implement transformations of non-capturing nested lambdas.
Faisal Vali
- [PATCH] Keep track of indentation levels in static initializers for correct indentation with tabs.
Alexander Kornienko
- [PATCH] Keep track of indentation levels in static initializers for correct indentation with tabs.
Daniel Jasper
- [PATCH] Keep track of indentation levels in static initializers for correct indentation with tabs.
Alexander Kornienko
- [PATCH] libclang: python API update+unittest: Type.spelling, Cursor.raw_comment, Cursor.brief_comment
Argyrios Kyrtzidis
- [PATCH] libcxx + MingW: correct printout of long doubles
Yaron Keren
- [PATCH] libcxx + MingW: correct printout of long doubles
G M
- [PATCH] libcxx + MingW: correct printout of long doubles
Yaron Keren
- [PATCH] libcxx + MingW: correct printout of long doubles
Anton Korobeynikov
- [PATCH] libcxx + MingW: correct printout of long doubles
Yaron Keren
- [PATCH] libcxx + MingW: correct printout of long doubles
Anton Korobeynikov
- [PATCH]Locate Visual Studio InstallDir in the presence of newer runtime
Yaron Keren
- [PATCH] Make CodeGenTypes data members private.
Mark Lacey
- [PATCH] Make InstantiatingTemplate depth checks clearer
Alp Toker
- [PATCH] Microsoft C++ Record Layout
Timur Iskhodzhanov
- [PATCH] Microsoft C++ Record Layout
Reid Kleckner
- [PATCH] Moving style option formatting to libFormat
Edwin Vane
- [PATCH] Pass a SourceLocation down to ubsan's "load_invalid_value" handler.
Nick Lewycky
- [PATCH] Pass a SourceLocation down to ubsan's "load_invalid_value" handler.
Richard Smith
- [PATCH] Pass a SourceLocation down to ubsan's "load_invalid_value" handler.
Richard Smith
- [PATCH] Pass CGCXXABIs around directly.
Mark Lacey
- [PATCH] Pass CGCXXABIs around directly.
Reid Kleckner
- [PATCH] Refactor DynTypedMatcher into a value type class, just like Matcher<T>.
Samuel Benzaquen
- [PATCH] Refactor DynTypedMatcher into a value type class, just like Matcher<T>.
Manuel Klimek
- [PATCH] Refactoring: split addTokenToState into two methods.
Alexander Kornienko
- [PATCH] Refactoring: split addTokenToState into two methods.
Daniel Jasper
- [PATCH] Remove #include <windows.h> from libcxx/include/support/win32/support.h
Yaron Keren
- [PATCH] Remove #include <windows.h> from libcxx/include/support/win32/support.h
G M
- [PATCH] Remove #include <windows.h> from libcxx/include/support/win32/support.h
Yaron Keren
- [PATCH] Remove instantiations of OwningPtr<T> and IntrusiveRefCntPtr<T> for every AST node type.
Samuel Benzaquen
- [PATCH] replaced callable_when_unconsumed annotation with generic callable_when annotation, redux
Chris Wailes
- [PATCH] replaced callable_when_unconsumed annotation with generic callable_when annotation, redux
Delesley Hutchins
- [PATCH] Sema: When merging typedefs, handle records before merging attributes
Justin Bogner
- [PATCH] SemaLookup.cpp wrong boolean test
Yaron Keren
- [PATCH] Split MangleContext into ABI-specific classes
Timur Iskhodzhanov
- [PATCH] Split MangleContext into ABI-specific classes
Reid Kleckner
- [PATCH] Split MangleContext into ABI-specific classes
Timur Iskhodzhanov
- [PATCH] Split MangleContext into ABI-specific classes
Timur Iskhodzhanov
- [PATCH] Support cross-compiling for Arm on a x86 Linux machine
Sriram Murali
- [PATCH] Support standalone FSF Mips toolchain directories tree in the Clang driver
Simon Atanasyan
- [PATCH] Typo in libcxx/include/support/win32/limits_win32.h
Yaron Keren
- [PATCH] Update clang-modernizer docs
Edwin Vane
- [PATCH] use __builtin_convertvector for _mm_cvtepi32_ps to enable constant propagation
Matthias Kretz
- [PATCH] use __builtin_convertvector for _mm_cvtepi32_ps to enable constant propagation
Matthias Kretz
- [PATCH] use __builtin_convertvector for _mm_cvtepi32_ps to enable constant propagation
Chandler Carruth
- [patch] Use aliases for more constructors and destructors
Rafael Espíndola
- [patch] Use aliases for more constructors and destructors
Rafael Espíndola
- [PATCH] Use CodeGenOptions to derive LLVM-IR fast math flags
Tobias Grosser
- [PATCH] use conversion of builtin vector types to enable constant propagation
Matthias Kretz
- [PATCH] use conversion of builtin vector types to enable constant propagation
Matthias Kretz
- [PATCH] Use the CGCXXABI member on CodeGenTypes.
Mark Lacey
- [PATCH] Use the CGCXXABI member on CodeGenTypes.
Reid Kleckner
- Bug fix 12730: Add support for __GCC_HAVE_SYNC_COMPARE_AND_SWAP_{1, 2, 4, 8} on ARM
İsmail Dönmez
- Bug fix 12730: Add support for __GCC_HAVE_SYNC_COMPARE_AND_SWAP_{1, 2, 4, 8} on ARM
Renato Golin
- Bug fix 12730: Add support for __GCC_HAVE_SYNC_COMPARE_AND_SWAP_{1, 2, 4, 8} on ARM
Weiming Zhao
- Bug fix 12730: Add support for __GCC_HAVE_SYNC_COMPARE_AND_SWAP_{1, 2, 4, 8} on ARM
Renato Golin
- chrono libcxx msvcrt patch slight revision
Howard Hinnant
- chrono libcxx msvcrt patch slight revision
Yaron Keren
- chrono libcxx msvcrt patch slight revision
G M
- FW: [PATCH] Support cross-compiling for Arm on a x86 Linux machine
Murali, Sriram
- Implement GB-9; remove std::gets
Marshall Clow
- Implement N3779 - user defined literals for std::complex
Howard Hinnant
- libclang: expose pointer-to-member type
Che-Liang Chiou
- libclang: expose pointer-to-member type
Argyrios Kyrtzidis
- libclang: expose pointer-to-member type
Che-Liang Chiou
- libclang: expose pointer-to-member type
Argyrios Kyrtzidis
- libclang: expose ref-qualifier of function type
Che-Liang Chiou
- LWG Issue 2141: common type
Marshall Clow
- LWG Issue 2141: common type
Jonathan Sauer
- LWG Issue 2143: ios_base::xalloc should be thread-safe
Marshall Clow
- LWG issue 2247: Add type trait std::is_null_pointer
Marshall Clow
- LWG issue 2247: Add type trait std::is_null_pointer
Howard Hinnant
- Mark the "literals" namespace as "inline"
Howard Hinnant
- patch: new attribute enable_if
Nick Lewycky
- patch: wire up -mcx16
Nick Lewycky
- patch: wire up -mcx16
Rafael Espíndola
- patch: wire up -mcx16
Nick Lewycky
- Patch for LWG issue 2275 - forward_as_tuple should be constexpr
Howard Hinnant
- r185291 - Restore r184205 and associated commits (after commit of r185290)
Timur Iskhodzhanov
- r191544 - Avoid the hard-coded limit on the number of typo corrections attempted.
Richard Smith
- r191544 - Avoid the hard-coded limit on the number of typo corrections attempted.
Kaelyn Uhrain
- r191586 - TBAA: use the same format for scalar TBAA and struct-path aware TBAA.
Richard Smith
- r191586 - TBAA: use the same format for scalar TBAA and struct-path aware TBAA.
Richard Smith
- r191586 - TBAA: use the same format for scalar TBAA and struct-path aware TBAA.
Richard Smith
- r191590 - Implements some of the more commonly used intrinsics in Intrin.h
Timur Iskhodzhanov
- r191590 - Implements some of the more commonly used intrinsics in Intrin.h
Warren Hunt
- r191590 - Implements some of the more commonly used intrinsics in Intrin.h
Warren Hunt
- r191590 - Implements some of the more commonly used intrinsics in Intrin.h
Timur Iskhodzhanov
- r191590 - Implements some of the more commonly used intrinsics in Intrin.h
Warren Hunt
- r191590 - Implements some of the more commonly used intrinsics in Intrin.h
Timur Iskhodzhanov
- r191590 - Implements some of the more commonly used intrinsics in Intrin.h
Chandler Carruth
- r191653 - Add a bunch of other GCC '-f' options and ignore them. This covers every
Chandler Carruth
- r191653 - Add a bunch of other GCC '-f' options and ignore them. This covers every
Richard Smith
- r191654 - clang-format: Improve alignment after 'return'.
Daniel Jasper
- r191665 - Fix use-after-free.
Manuel Klimek
- r191666 - Moving style option formatting to libFormat
Edwin Vane
- r191666 - Moving style option formatting to libFormat
David Blaikie
- r191666 - Moving style option formatting to libFormat
Vane, Edwin
- r191666 - Moving style option formatting to libFormat
David Blaikie
- r191681 - Adding intrinsics to the clang front end for the x86 TBM instruction set.
Yunzhong Gao
- r191682 - Remove unused variable introduced in 191666
David Blaikie
- r191695 - Turn struct-path aware TBAA on by default.
Manman Ren
- r191695 - Turn struct-path aware TBAA on by default.
Eric Christopher
- r191695 - Turn struct-path aware TBAA on by default.
Manman Ren
- r191695 - Turn struct-path aware TBAA on by default.
Eric Christopher
- r191695 - Turn struct-path aware TBAA on by default.
Manman Ren
- r191695 - Turn struct-path aware TBAA on by default.
Eric Christopher
- r191695 - Turn struct-path aware TBAA on by default.
Manman Ren
- r191700 - Changing __X86_64__ to __x86_64__ in Intrin.h.
Warren Hunt
- r191707 - Fix PR 12730: Add _GCC_HAVE_SYNC_COMPARE_AND_SWAP macros for ARM
Weiming Zhao
- r191718 - Remove support for arrays of runtime bound in C++1y, now they have been voted
Richard Smith
- r191718 - Remove support for arrays of runtime bound in C++1y, now they have been voted
Chandler Carruth
- r191718 - Remove support for arrays of runtime bound in C++1y, now they have been voted
Richard Smith
- r191719 - Tweak changes in r186464 to avoid a crash.
Eli Friedman
- r191725 - Revert r191586 and r191695. They cause crashes when building with
Richard Smith
- r191726 - Fix typo correction usage of SemaAccess.cpp.
Eli Friedman
- r191727 - Fix computation of linkage within nested lambdas.
Faisal Vali
- r191730 - [OpenMP] Added parsing and semantic analysis for firstprivate clause
Alexey Bataev
- r191736 - [ARM] Add -mfpu=none option to the driver.
Amara Emerson
- r191758 - Author a FIXME in a test now that PR12784 is fixed
Timur Iskhodzhanov
- r191760 - Run the -cxx-abi test in 32-bit mode as the 64-bit one crashes on the bots
Timur Iskhodzhanov
- r191768 - Move checkStringLiteralArgument into Sema class
Tim Northover
- r191769 - Implement ARM GNU-style interrupt attribute
Tim Northover
- r191769 - Implement ARM GNU-style interrupt attribute
Timur Iskhodzhanov
- r191769 - Implement ARM GNU-style interrupt attribute
Timur Iskhodzhanov
- r191769 - Implement ARM GNU-style interrupt attribute
Tim Northover
- r191771 - Typo in ARM __attribute__((interrupt)) documentation
Tim Northover
- r191772 - Refactoring: split addTokenToState into two methods.
Alexander Kornienko
- r191776 - Fixed replacements for files with relative paths are not applied.
Ariel J. Bernal
- r191783 - Fixing implementation of bittestandset in Intrin.h.
Warren Hunt
- r191784 - Revert commits r190613, r190560 and r190557.
Rafael Espindola
- r191796 - ObjectiveC migrator: When doing migration, migrator must suggest
Fariborz Jahanian
- r191797 - No functionality change. Reflow lines that could fit on one line. Break lines
Nick Lewycky
- r191798 - Fix a typo suggestion regression introduced by r191544.
Kaelyn Uhrain
- r191801 - Debug Info: update testing cases when the derived-from field of a
Manman Ren
- r191805 - [analyzer] Add missing return after function pointer null check.
Jordan Rose
- r191808 - Thread a SourceLocation into the EmitCheck for "load_invalid_value". This occurs
Nick Lewycky
- r191809 - Fix build breakage, missed committing a chunk of a patch.
Nick Lewycky
- r191816 - [ARM] Add a builtin to allow you to use the 'sevl' instruction.
Joey Gouly
- r191817 - Fix gcc -Wunused-but-set-variable warning in r191634.
Patrik Hagglund
- r191817 - Fix gcc -Wunused-but-set-variable warning in r191634.
David Blaikie
- r191817 - Fix gcc -Wunused-but-set-variable warning in r191634.
Patrik Hägglund H
- r191820 - clang-format: Fix clang-format-diff.py according to diff specification.
Daniel Jasper
- r191833 - Accept #pragma warning(push, 0) without warning
Reid Kleckner
- r191839 - Fix crashes when creating global instances of polymorphic classes without fields
Timur Iskhodzhanov
- r191842 - Objective-C migrator. Simplify migrator option
Fariborz Jahanian
- r191846 - Speed up CorrectTypo by avoiding lookups on unreasonable candidates.
Kaelyn Uhrain
- r191854 - Use the CGCXXABI member on CodeGenTypes.
Mark Lacey
- r191855 - ObjectiveC migrator. Starting distiguising different
Fariborz Jahanian
- r191858 - ObjectiveC migrator: Add more options one for each
Fariborz Jahanian
- r191863 - ObjectiveC migrator: Add individual options and
Fariborz Jahanian
- r191872 - Change __builtin_ia32_bextri_u64 to take an i64imm to match up with LLVM backend changes.
Craig Topper
- r191875 - Teach TreeTransform and family how to transform generic lambdas within templates and nested within themselves.
Faisal Vali
- r191876 - Revert changes from the nested lambdas commit till i figure out
Faisal Vali
- r191878 - Extract ABI-specific parts of MangleContext into separate classes
Timur Iskhodzhanov
- r191879 - Teach TreeTransform and family how to transform generic lambdas within templates and nested within themselves.
Faisal Vali
- r191879 - Teach TreeTransform and family how to transform generic lambdas within templates and nested within themselves.
Rafael Espíndola
- r191879 - Teach TreeTransform and family how to transform generic lambdas within templates and nested within themselves.
Faisal Vali
- r191890 - Gracefully (and correctly) handle init of multiple union members
Matthew Curtis
- r191900 - ARM: *-*-darwin-eabi triples should use AAPCS.
Tim Northover
- r191901 - Fix test to work on Linux hosts by specifying triple.
Tim Northover
- r191906 - [libclang] Introduce clang_Type_getClassType which returns the class type of a member pointer type.
Argyrios Kyrtzidis
- r191909 - [analyzer] Add new debug helper clang_analyzer_warnIfReached.
Jordan Rose
- r191910 - [analyzer] Replace bug category magic strings with shared constants.
Jordan Rose
- r191910 - [analyzer] Replace bug category magic strings with shared constants.
Eric Christopher
- r191910 - [analyzer] Replace bug category magic strings with shared constants.
Jordan Rose
- r191910 - [analyzer] Replace bug category magic strings with shared constants.
Richard Smith
- r191910 - [analyzer] Replace bug category magic strings with shared constants.
Jordan Rose
- r191910 - [analyzer] Replace bug category magic strings with shared constants.
Eric Christopher
- r191912 - Ignore -mieee-fp.
Rafael Espindola
- r191917 - Give this a temporary output so it is cleaned up.
Eric Christopher
- r191917 - Give this a temporary output so it is cleaned up.
Jordan Rose
- r191917 - Give this a temporary output so it is cleaned up.
Eric Christopher
- r191917 - Give this a temporary output so it is cleaned up.
Benjamin Kramer
- r191917 - Give this a temporary output so it is cleaned up.
Eric Christopher
- r191917 - Give this a temporary output so it is cleaned up.
Rafael Espíndola
- r191921 - Make this use -### instead of a temporary output.
Eric Christopher
- r191923 - Fix test.
Rafael Espindola
- r191925 - Fix the test in clang_f_opts.c to fail on unknown options.
Rafael Espindola
- r191926 - Don't complain about -fuse-ld=gold (cf r191429).
Nico Weber
- r191936 - Temporarily revert r191910 until the layering violation can be fixed.
Richard Smith
- r191937 - [analyzer] Replace bug category magic strings with shared constants, take 2.
Jordan Rose
- r191945 - Implement aarch64 neon instruction set AdvSIMD (3V elem).
Jiangning Liu
- r191947 - [Mips] For MIPS '-fPIC -static' means to compile as -fPIC but link with
Simon Atanasyan
- r191947 - [Mips] For MIPS '-fPIC -static' means to compile as -fPIC but link with
Richard Sandiford
- r191947 - [Mips] For MIPS '-fPIC -static' means to compile as -fPIC but link with
Simon Atanasyan
- r191950 - Simplify MicrosoftCXXNameMangler::mangleFunctionType
Timur Iskhodzhanov
- r191951 - Revert r191947. The problem is not MIPS-specific and requires more
Simon Atanasyan
- r191953 - Do not emit undefined lsrh/ashr for NEON shifts
Amaury de la Vieuville
- r191955 - Revert "Teach TreeTransform and family how to transform generic lambdas within templates and nested within themselves."
Rafael Espindola
- r191956 - Add test from pr17476.
Rafael Espindola
- r191957 - Don't assume instruction names in the output.
Rafael Espindola
- r191968 - Temporarily revert r191801 due to conflicts with the revert of r191792.
Eric Christopher
- r191971 - ObjectiveC. Allow readonly properties without an explicit ownership
Fariborz Jahanian
- r191983 - Consumed Analysis: Change callable_when so that it can take a list of states
DeLesley Hutchins
- r192019 - Debug Info: update testing cases when the derived-from field of a
Manman Ren
- r192027 - Remove unused Sema::DelayedDestructorExceptionSpecs
Alp Toker
- r192029 - Implement aarch64 neon instruction set AdvSIMD (Across).
Jiangning Liu
- r192030 - Sema: Cleanup redundant variable NumArgsToCheck
Benjamin Kramer
- r192034 - Remove unused param from Linux::computeSysRoot().
Simon Atanasyan
- r192036 - Use logical/arithmetic operations instead of builtins in tbmintrin.h. This way we can remove the intrinsic support from the backend.
Craig Topper
- r192043 - Silencing an MSVC warning; SmallSet::count returns a bool instead of a size_t.
Aaron Ballman
- r192045 - Add support for -mcx16, and predefine __GCC_HAVE_SYNC_COMPARE_AND_SWAP_16 when
Nick Lewycky
- r192050 - Switching the CallableWhen attribute over to using the string literal helper function instead of custom logic.
Aaron Ballman
- r192052 - Pass CGCXXABIs around directly.
Mark Lacey
- r192061 - remove a dead assignment. The variables are set just right after. Found by scan-build http://buildd-clang.debian.net/scan-build/
Sylvestre Ledru
- r192062 - clang-format: Remove empty lines after visibility modifiers.
Daniel Jasper
- r192067 - Fix PR17382 - properly group virtual method overloads in the vftable
Timur Iskhodzhanov
- r192087 - Refactor tryCaptureVar using ExtractMethod. No functionality change.
Faisal Vali
- Unavailable method checker
Jordan Rose
- Unavailable method checker
Jordan Rose
- Unavailable method checker
Jordan Rose
- VS build failure
jahanian
- VS build failure
jahanian
- VS build failure
Bob Wilson
- VS build failure
Chandler Carruth
- VS build failure
Marshall Clow
- VS build failure
Chandler Carruth
Last message date:
Sun Oct 6 22:13:49 PDT 2013
Archived on: Tue Aug 4 15:31:17 PDT 2015
This archive was generated by
Pipermail 0.09 (Mailman edition).