Go to file
Daniel Jasper 54ac820890 Fix bad formatting of overloaded operator definitions.
Before:
bool operator<
    (const aaaaaaaaaaaaaaaaaaaaa &left, const aaaaaaaaaaaaaaaaaaaaa &right) {
  return left.group < right.group;
}

After:
bool operator<(const aaaaaaaaaaaaaaaaaaaaa &left,
               const aaaaaaaaaaaaaaaaaaaaa &right) {
  return left.group < right.group;
}

llvm-svn: 178887
2013-04-05 17:21:59 +00:00
clang Fix bad formatting of overloaded operator definitions. 2013-04-05 17:21:59 +00:00
clang-tools-extra lib-ified core cpp11-migrate functionality to support unit tests 2013-04-04 20:19:58 +00:00
compiler-rt [asan] make huge_negative_hea_oob more meaningful 2013-04-05 15:16:48 +00:00
debuginfo-tests Remove IR scenario tests. 2013-03-15 20:52:10 +00:00
libclc Update the copyright coredits -- Happy new year 2013! 2013-01-01 10:00:19 +00:00
libcxx More list debug mode tests. 2013-04-05 15:04:10 +00:00
libcxxabi Bruce Mitchener: Typo fixes. 2013-02-15 15:48:49 +00:00
lld [ELF][test] add dynamic library search 2013-04-05 04:34:57 +00:00
lldb Add support for Platform plugins to have settings. 2013-04-05 05:06:39 +00:00
llvm Make the test/CodeGen/X86/win32_sret.ll reliable on any CPU by explicitly specifying the -mcpu 2013-04-05 17:05:56 +00:00
polly ScopDetection: Use isTopLevelRegion 2013-04-02 06:41:48 +00:00