1. 21b91a3 fix PR6187: various load functions in xmmintrin.h were missing 'const'. by Chris Lattner · 14 years ago
  2. 9afb227 fix a bug in the _MM_TRANSPOSE4_PS definition, patch by Brian Sumner from PR6138 by Chris Lattner · 14 years ago
  3. 2c48345 _mm_xor_ps does a xor not a nxor. The other 'xor' builtins look fine, by Chris Lattner · 15 years ago
  4. c3420ff Revert mmx palignr to use an intrinsic, since mmx shuffle patterns are missing. by Nate Begeman · 15 years ago
  5. ce5818a Support x86's PALIGNR instruction without the use of a palignr intrinsic. by Nate Begeman · 15 years ago
  6. f2c8e7d minimal fix for PR5743 by Chris Lattner · 15 years ago
  7. a22848f Pick up MB_LEN_MAX as defined by the system <limits.h>, when it's provided there by Douglas Gregor · 15 years ago
  8. fc07d91 Define SIG_ATOMIC_MIN and SIG_ATOMIC_MAX in terms of __SIG_ATOMIC_WIDTH__. by Ken Dyck · 15 years ago
  9. fdb4324 Avoid unwanted expansion in macros that paste together INT<n>_C(v) and by Ken Dyck · 15 years ago
  10. a2e9284 Avoid unwanted expansion in macros that paste together INT<n>_MIN, INT<n>_MAX, by Ken Dyck · 15 years ago
  11. aface1b Avoid unwanted macro expansion in macros that paste together int<n>_t and by Ken Dyck · 15 years ago
  12. c2bae59 Define WCHAR_MIN and WCHAR_MAX in terms of __WCHAR_WIDTH__ for consistency with by Ken Dyck · 15 years ago
  13. bfec4b0 Parameterize WINT_MIN and WINT_MAX with __WINT_WIDTH__ to support arbitrary by Ken Dyck · 15 years ago
  14. 4b7d945 Construct definition of SIZE_MAX from __SIZE_WIDTH__ to support targets of by Ken Dyck · 15 years ago
  15. 8a3e9d9 Construct the macro body of PTRDIFF_MAX and PTRDIFF_MIN from __PTRDIFF_WIDTH__. by Ken Dyck · 15 years ago
  16. c3ca6ef Construct INTPTR_MIN, INTPTR_MAX, and UINTPTR_MAX from the exact-width limit by Ken Dyck · 15 years ago
  17. 08321b4 Define intptr_t and uintptr_t in terms of their equivalent exact-width types. by Ken Dyck · 15 years ago
  18. 832b710 Define INTMAX_C and UINTMAX_C in terms of the corresponding exact-width by Ken Dyck · 15 years ago
  19. db57ce5 Define INTMAX_MIN, INTMAX_MAX, and UINTMAX_MAX in terms of the limit macros for by Ken Dyck · 15 years ago
  20. 36fac07 Define intmax_t and uintmax_t as the [u]intN_t type corresponding to by Ken Dyck · 15 years ago
  21. b088756 Replace (-INT8_C(128)), which uses an illegally out-of-range argument for by Ken Dyck · 15 years ago
  22. 8163841 Use the INTn_C integer constant macros to generate limit constants with correct by Ken Dyck · 15 years ago
  23. 6ab25f4 Remove unnecessary parens around the bodies of integer constant macros. C99 by Ken Dyck · 15 years ago
  24. eef22ef Parameterize the constant-generating macros in stdint.h with new built-in by Ken Dyck · 15 years ago
  25. dcdd2a0 Generalize stdint.h for non-8-bit-multiple types, patch by Ken Dyck! by Chris Lattner · 15 years ago
  26. 06dcf6b A simple reordering of the definitions in stdint.h and by Chris Lattner · 15 years ago
  27. 92bd8c7 Added __has_include and __has_include_next. by John Thompson · 15 years ago
  28. 25950e8 CMake: Respect LLVM_LIBDIR_SUFFIX for clang-specific headers under by Oscar Fuentes · 15 years ago
  29. 4bf4e30 Make our char vector types not be explicitly signed to match GCC and to fix compilation with C++ and -fno-lax-vector-conversions by Anders Carlsson · 15 years ago
  30. 9436ed5 Fix PR4923. by Anders Carlsson · 15 years ago
  31. f918b8f Collapse more clang version numbers down into fewer places. by Mike Stump · 15 years ago
  32. 1f2c32e Back to 1.1 we go. by Mike Stump · 15 years ago
  33. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  34. 7f7b748 CMake: Improve installation of Clang by Douglas Gregor · 15 years ago
  35. 3a266f2 Switch some functions from using x86 builtins to using vector operations. by Eli Friedman · 15 years ago
  36. 91a425c Make sure install Clang headers when building clang-cc by Douglas Gregor · 15 years ago
  37. ebfc180 Update Clang to include the InitializeAllTargets and by Douglas Gregor · 15 years ago
  38. c7d95dc Following gcc, hide the hack to include the SSE2 intrinsics from by Eli Friedman · 15 years ago
  39. 8fff257 Remove a few more vector builtins. by Eli Friedman · 15 years ago
  40. 3eef3e1 xmmintrin needs to include emmintrin, Darwin system headers seem to depend on it by Daniel Dunbar · 15 years ago
  41. e0ae8bd Now that LLVM CodeGen can handle the generic variations a bit better, by Eli Friedman · 15 years ago
  42. 0602600 CMake: Install Clang's headers into the right place in the build tree, for regression testing by Douglas Gregor · 15 years ago
  43. 098136a Replace more calls to builtins with generic code. by Eli Friedman · 15 years ago
  44. 2e8d8da Fix obvious typo. by Eli Friedman · 15 years ago
  45. 17d2e3a Fix some casts to work without -flax-vector-conversions. by Eli Friedman · 15 years ago
  46. 80c8004 Misc fixes to MMX/SSE intrinsics: a few small bug fixes, and getting rid by Eli Friedman · 15 years ago
  47. db7351a Add aliases for a couple of SSE intrinsics. Patch by Ed Schouten. by Eli Friedman · 15 years ago
  48. 79dcf5f Add 'cmp' SSE builtins and get rid of a bunch of other builtins. by Anders Carlsson · 15 years ago
  49. 6fdca0e Fix for PR3841: follow gcc's example and fall back to the system by Eli Friedman · 15 years ago
  50. 2e828f0 Fix tyop in SSSE3 header (6808876). by Anders Carlsson · 15 years ago
  51. ca93195 glibc plays some weird games with multiple different definitions of by Chris Lattner · 15 years ago
  52. 7add547 fix misspelt attribute. by Chris Lattner · 15 years ago
  53. 2ec926c define __va_copy unconditionally, but va_copy only in c99 or non-ansi mode. by Chris Lattner · 15 years ago
  54. ae8ecdd Fix typo. by Anders Carlsson · 15 years ago
  55. 2fc47b5 add support for the LONG_LONG_MIN/LONG_LONG_MAX/ULONG_LONG_MAX limits.h GNU extensions. by Chris Lattner · 15 years ago
  56. cf117d3 Only intptr_t is protected by __intptr_t_defined. by Daniel Dunbar · 15 years ago
  57. ab775f6 fix inverted conditional, rdar://6633188 by Chris Lattner · 15 years ago
  58. adcf5b3 Put compiler headers in <prefix>/lib/clang/1.0/include (vs by Daniel Dunbar · 15 years ago
  59. ccb8f08 testing (reverted) by Howard Hinnant · 15 years ago
  60. 412705b testing by Howard Hinnant · 15 years ago
  61. 0c36c92 Remove pointless backslash by Douglas Gregor · 15 years ago
  62. c13c012 Add an unavailable __tg_promote function to attract incorrect uses of type-generic macros, rom Howard Hinnant. by Douglas Gregor · 15 years ago
  63. 39aa1ed initial reimplement tgmath.h, written by Howard Hinnant! by Chris Lattner · 15 years ago
  64. d99e31b Spell __always_inline__ correctly. by Daniel Dunbar · 15 years ago
  65. 85b2a47 Add SSSE3 header by Anders Carlsson · 15 years ago
  66. 1cd6711 remove dead macros by Chris Lattner · 15 years ago
  67. e1ce4a9 explicitly cast integers to double. This a) silences any by Chris Lattner · 15 years ago
  68. 05a6c16 asin support. No we don't care about complex int :) by Chris Lattner · 15 years ago
  69. e5b7d64 hand macro expand this to make "candidate" set printing more useful. However, by Chris Lattner · 15 years ago
  70. f265a00 add support for integers to tgmath functions. I apparently need to provide by Chris Lattner · 15 years ago
  71. 5f3d0ae start converting over to attr(overloadable). Unfortunately, this by Chris Lattner · 15 years ago
  72. e308c41 Fix 80col violations. by Mike Stump · 15 years ago
  73. a837a07 Fix more xmmintrin.h typos by Anders Carlsson · 15 years ago
  74. 13f5f6e Fix an error in _mm_loaddup_pd that Eli noticed. by Anders Carlsson · 15 years ago
  75. a2f12ae Add the nodebug attribute to intrinsics by Anders Carlsson · 15 years ago
  76. 40e60c2 anders johnson points out that some software depends on the by Chris Lattner · 15 years ago
  77. 6ad474f Give TargetInfo a new IntPtrType to hold the intptr_t type for a target. by Chris Lattner · 15 years ago
  78. dae4413 80col. by Mike Stump · 15 years ago
  79. 3855b9a Fix limits.h for linux, as glibc does a #include_next unless by Mike Stump · 15 years ago
  80. f29b774 Add pmmintrin.h header. by Anders Carlsson · 15 years ago
  81. 4cc4427 Fix some mistakes I made when I tried to decipher the Intel documentation of the MXCSR register by Anders Carlsson · 15 years ago
  82. 6c90919 Fix an #ifndef that should be an #ifdef instead. by Anders Carlsson · 15 years ago
  83. 6148428 C++ really shouldn't check these #defines, thanks to Howard by Chris Lattner · 15 years ago
  84. dfd556e remove two eroneous suffixes, these promote to int. Thanks to Neil by Chris Lattner · 15 years ago
  85. 33cfe69 add note, weirdness. by Chris Lattner · 15 years ago
  86. 7ed4f39 fix some missing parens, thanks for Eli's review! by Chris Lattner · 15 years ago
  87. 34faffa fix a typo that Sebastian noticed! by Chris Lattner · 15 years ago
  88. c865f7a make sure that UINTMAX_MAX has an unsigned type. This assumes that by Chris Lattner · 15 years ago
  89. f894bd0 make various MAX/MIN constants be preprocessor constants, not C constants. by Chris Lattner · 15 years ago
  90. b1f3fe5 start of tgmath, yuck. by Chris Lattner · 15 years ago
  91. 25d69b5 Apparently it is important to define intptr_t and uintptr_t to by Chris Lattner · 15 years ago
  92. 63b4fe6 Fix some errors in the new stdint.h. by Sebastian Redl · 15 years ago
  93. ed27d44 only define MB_LEN_MAX if the system <limits.h> doesn't. by Chris Lattner · 15 years ago
  94. 2a67f7b add a stdint.h header. by Chris Lattner · 15 years ago
  95. a9cece6 correct description by Chris Lattner · 15 years ago
  96. c807423 first hack at limits.h by Chris Lattner · 15 years ago
  97. 3733831 Avoid creating .dir files in the installation area. by Mike Stump · 15 years ago
  98. bbd1fa2 Fix more bugs I discovered by Anders Carlsson · 15 years ago
  99. 62005c1 Fix some errors I noticed by Anders Carlsson · 15 years ago
  100. d4a5c9a Add mm_malloc.h, patch by Sam Weinig. by Anders Carlsson · 16 years ago