From: Chris Lattner Date: Sat, 7 May 2005 02:21:21 +0000 (+0000) Subject: add note about bit builtins newly supported X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7939b7817088c2939c4ff434af1ef9f4f8505eba;p=oota-llvm.git add note about bit builtins newly supported git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21757 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index 2845202bf84..cc2ff8c2696 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -106,6 +106,10 @@ In this release, the following missing features were implemented: -shared -Wl,-native' (or with -Wl,-native-cbe).
  • LLVM now supports a new "llvm.prefetch " intrinsic, and llvm-gcc now supports __builtin_prefetch. +
  • LLVM now supports intrinsics for bit + counting and llvm-gcc now implements the GCC + __builtin_popcount, __builtin_ctz, and + __builtin_clz builtins.
  • @@ -396,8 +400,9 @@ work: __builtin_types_compatible_p, __builtin_choose_expr, __builtin_constant_p, and __builtin_expect (currently ignored). We also support builtins for ISO C99 floating - point comparison macros (e.g., __builtin_islessequal), and - __builtin_prefetch. + point comparison macros (e.g., __builtin_islessequal), + __builtin_prefetch, __builtin_popcount[ll], + __builtin_clz[ll], and __builtin_ctz[ll].

    The following extensions are known to be supported: