Go to file
Jordan Rose aa7a3b3e75 Format strings: correct signedness if already correcting width (%d,%u).
It is valid to do this:
  printf("%u", (int)x);

But if we see this:
  printf("%lu", (int)x);

...our fixit should suggest %d, not %u.

llvm-svn: 172739
2013-01-17 18:47:16 +00:00
clang Format strings: correct signedness if already correcting width (%d,%u). 2013-01-17 18:47:16 +00:00
clang-tools-extra Fix a -Wdocumentation warning (empty paragraph passed to '\brief' command) 2013-01-16 22:10:09 +00:00
compiler-rt [ubsan] Add SANITIZER_INTERFACE_ATTRIBUTE to __ubsan_vptr_type_cache 2013-01-17 17:14:12 +00:00
debuginfo-tests Add a test for static member debug information. 2013-01-16 01:22:09 +00:00
libclc Update the copyright coredits -- Happy new year 2013! 2013-01-01 10:00:19 +00:00
libcxx Make a few tests optimization-proof. These tests were failing under -O3 because the optimizer was eliminating the call to new. 2013-01-16 17:56:06 +00:00
libcxxabi Update the copyright coredits -- Happy new year 2013! 2013-01-01 10:00:19 +00:00
lld [ELF] Use operator new(std::size_t, BumpPtrAllocator). 2013-01-16 23:34:45 +00:00
lldb Under GNU/Linux & HURD, add a soname to the liblldb shared library. 2013-01-17 16:59:32 +00:00
llvm Add indexed load/store instructions for offset validation check. 2013-01-17 18:42:37 +00:00
polly clang-format goodness 2013-01-14 22:40:23 +00:00