Go to file
Daniel Jasper 40e1921f2a Leave some macros on their own line
If an identifier is on its own line and it is all upper case, it is highly
likely that this is a macro that is meant to stand on a line by itself.

Before:
class A : public QObject {
  Q_OBJECT A() {}
};

Ater:
class A : public QObject {
  Q_OBJECT

  A() {}
};

llvm-svn: 182855
2013-05-29 13:16:10 +00:00
clang Leave some macros on their own line 2013-05-29 13:16:10 +00:00
clang-tools-extra Fix UseAuto replacing declaration lists with new expressions 2013-05-27 14:30:23 +00:00
compiler-rt [asan] Make ASan report the correct thread address ranges to LSan. 2013-05-29 13:09:44 +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 Neglected to remove a debugging comment from last commit. 2013-05-21 21:19:35 +00:00
libcxxabi Add capability to demangle invocation functions for ObjC blocks. 2013-04-10 19:44:03 +00:00
lld [WinLink] Add -subsystem and -out command line option parsing. 2013-05-29 05:07:49 +00:00
lldb Removing expected fail from another test that is now passing. 2013-05-29 01:15:49 +00:00
llvm SparcFrameLowering.cpp: Mark verifyLeafProcRegUse() as UNUSED. [-Wunused-function] 2013-05-29 12:10:42 +00:00
polly add comments to clarify the use of a temporary variable in the map insertion 2013-05-24 18:46:02 +00:00