Go to file
Daniel Jasper 8835a32078 clang-format: Fix overloaded operator edge case.
Before:
  template <class F>
  void Call(F f) {
    f.template operator() <int>();
  }

After:
  template <class F>
  void Call(F f) {
    f.template operator()<int>();
  }

llvm-svn: 220202
2014-10-20 13:56:30 +00:00
clang clang-format: Fix overloaded operator edge case. 2014-10-20 13:56:30 +00:00
clang-tools-extra [clang-tidy] Add support for custom configuration file names/formats. 2014-10-20 12:29:15 +00:00
compiler-rt [asan] the run-time part of intra-object-overflow detector (-fsanitize-address-field-padding=1). Note that all of this is still experimental; don't use unless you are brave. 2014-10-17 01:22:37 +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 r600: Use llvm intrinsic to read work dimension information 2014-10-15 15:08:06 +00:00
libcxx [libcxx] Redo adding support for building and testing with an ABI library not along linker paths 2014-10-19 00:42:41 +00:00
libcxxabi Add an .arcconfig for libc++abi. 2014-10-17 16:48:56 +00:00
lld [ELF] Add demangle test to XFAIL 2014-10-20 05:33:42 +00:00
lldb Fix 4 failing llgs-related tests on a stock Ubuntu 14.04 x86_64 system./ 2014-10-20 03:56:46 +00:00
llvm Remove unnecessary else. 2014-10-20 13:08:19 +00:00
openmp I apologise in advance for the size of this check-in. At Intel we do 2014-10-07 16:25:50 +00:00
polly [Refactor][NfC] ReportLevel should be used as a bool not an int 2014-10-15 23:24:28 +00:00