| Hans Wennborg | 8f5b44a | 2019-07-18 11:51:05 +0000 | [diff] [blame] | 1 | ======================================== |
| 2 | Clang 10.0.0 (In-Progress) Release Notes |
| 3 | ======================================== |
| Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 4 | |
| 5 | .. contents:: |
| 6 | :local: |
| 7 | :depth: 2 |
| 8 | |
| Hans Wennborg | 0aa0d91 | 2018-09-10 08:51:25 +0000 | [diff] [blame] | 9 | Written by the `LLVM Team <https://llvm.org/>`_ |
| Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 10 | |
| 11 | .. warning:: |
| 12 | |
| Hans Wennborg | 8f5b44a | 2019-07-18 11:51:05 +0000 | [diff] [blame] | 13 | These are in-progress notes for the upcoming Clang 10 release. |
| Hans Wennborg | 189f1f3 | 2017-02-09 23:26:34 +0000 | [diff] [blame] | 14 | Release notes for previous releases can be found on |
| Hans Wennborg | 0aa0d91 | 2018-09-10 08:51:25 +0000 | [diff] [blame] | 15 | `the Download Page <https://releases.llvm.org/download.html>`_. |
| Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 16 | |
| 17 | Introduction |
| 18 | ============ |
| 19 | |
| 20 | This document contains the release notes for the Clang C/C++/Objective-C |
| Hans Wennborg | 8f5b44a | 2019-07-18 11:51:05 +0000 | [diff] [blame] | 21 | frontend, part of the LLVM Compiler Infrastructure, release 10.0.0. Here we |
| Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 22 | describe the status of Clang in some detail, including major |
| 23 | improvements from the previous release and new feature work. For the |
| 24 | general LLVM release notes, see `the LLVM |
| Hans Wennborg | 0aa0d91 | 2018-09-10 08:51:25 +0000 | [diff] [blame] | 25 | documentation <https://llvm.org/docs/ReleaseNotes.html>`_. All LLVM |
| Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 26 | releases may be downloaded from the `LLVM releases web |
| Hans Wennborg | 0aa0d91 | 2018-09-10 08:51:25 +0000 | [diff] [blame] | 27 | site <https://llvm.org/releases/>`_. |
| Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 28 | |
| Hans Wennborg | d878ca8 | 2017-08-30 18:35:44 +0000 | [diff] [blame] | 29 | For more information about Clang or LLVM, including information about the |
| Hans Wennborg | 0aa0d91 | 2018-09-10 08:51:25 +0000 | [diff] [blame] | 30 | latest release, please see the `Clang Web Site <https://clang.llvm.org>`_ or the |
| 31 | `LLVM Web Site <https://llvm.org>`_. |
| Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 32 | |
| 33 | Note that if you are reading this file from a Subversion checkout or the |
| 34 | main Clang web page, this document applies to the *next* release, not |
| 35 | the current one. To see the release notes for a specific release, please |
| Hans Wennborg | 0aa0d91 | 2018-09-10 08:51:25 +0000 | [diff] [blame] | 36 | see the `releases page <https://llvm.org/releases/>`_. |
| Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 37 | |
| Hans Wennborg | 8f5b44a | 2019-07-18 11:51:05 +0000 | [diff] [blame] | 38 | What's New in Clang 10.0.0? |
| 39 | =========================== |
| Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 40 | |
| 41 | Some of the major new features and improvements to Clang are listed |
| 42 | here. Generic improvements to Clang as a whole or to its underlying |
| 43 | infrastructure are described first, followed by language-specific |
| 44 | sections with improvements to Clang's support for those languages. |
| 45 | |
| 46 | Major New Features |
| 47 | ------------------ |
| 48 | |
| Hans Wennborg | 1fe469a | 2019-01-16 10:57:02 +0000 | [diff] [blame] | 49 | - ... |
| Rafael Espindola | 3497069 | 2013-12-12 16:07:11 +0000 | [diff] [blame] | 50 | |
| Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 51 | Improvements to Clang's diagnostics |
| 52 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 53 | |
| Richard Trieu | 6541c79 | 2019-09-21 02:37:10 +0000 | [diff] [blame] | 54 | - -Wtautological-overlap-compare will warn on negative numbers and non-int |
| 55 | types. |
| Richard Trieu | 4c05de8 | 2019-09-21 03:02:26 +0000 | [diff] [blame] | 56 | - -Wtautological-compare for self comparisons and |
| 57 | -Wtautological-overlap-compare will now look through member and array |
| 58 | access to determine if two operand expressions are the same. |
| Richard Trieu | 8b0d14a | 2019-10-19 00:57:23 +0000 | [diff] [blame^] | 59 | - -Wtautological-bitwise-compare is a new warning group. This group has the |
| 60 | current warning which diagnoses the tautological comparison of a bitwise |
| 61 | operation and a constant. The group also has the new warning which diagnoses |
| 62 | when a bitwise-or with a non-negative value is converted to a bool, since |
| 63 | that bool will always be true. |
| Roman Lebedev | 61061d6 | 2018-04-07 10:39:21 +0000 | [diff] [blame] | 64 | |
| Erich Keane | b0c7809 | 2017-07-26 18:04:45 +0000 | [diff] [blame] | 65 | Non-comprehensive list of changes in this release |
| 66 | ------------------------------------------------- |
| 67 | |
| Roman Lebedev | 536b0ee | 2019-10-10 09:25:02 +0000 | [diff] [blame] | 68 | * In both C and C++ (C17 ``6.5.6p8``, C++ ``[expr.add]``), pointer arithmetic is |
| 69 | only permitted within arrays. In particular, the behavior of a program is not |
| 70 | defined if it adds a non-zero offset (or in C, any offset) to a null pointer, |
| 71 | or if it forms a null pointer by subtracting an integer from a non-null |
| 72 | pointer, and the LLVM optimizer now uses those guarantees for transformations. |
| 73 | This may lead to unintended behavior in code that performs these operations. |
| 74 | The Undefined Behavior Sanitizer ``-fsanitize=pointer-overflow`` check has |
| 75 | been extended to detect these cases, so that code relying on them can be |
| 76 | detected and fixed. |
| 77 | |
| Craig Topper | 635d383 | 2019-09-11 23:54:36 +0000 | [diff] [blame] | 78 | - For X86 target, -march=skylake-avx512, -march=icelake-client, |
| 79 | -march=icelake-server, -march=cascadelake, -march=cooperlake will default to |
| 80 | not using 512-bit zmm registers in vectorized code unless 512-bit intrinsics |
| 81 | are used in the source code. 512-bit operations are known to cause the CPUs |
| 82 | to run at a lower frequency which can impact performance. This behavior can be |
| 83 | changed by passing -mprefer-vector-width=512 on the command line. |
| Ilya Biryukov | 88aef52 | 2018-12-05 18:32:05 +0000 | [diff] [blame] | 84 | |
| Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 85 | New Compiler Flags |
| 86 | ------------------ |
| 87 | |
| Reid Kleckner | 5e866e4 | 2019-10-10 21:04:25 +0000 | [diff] [blame] | 88 | - The -fgnuc-version= flag now controls the value of ``__GNUC__`` and related |
| 89 | macros. This flag does not enable or disable any GCC extensions implemented in |
| 90 | Clang. Setting the version to zero causes Clang to leave ``__GNUC__`` and |
| 91 | other GNU-namespaced macros, such as ``__GXX_WEAK__``, undefined. |
| Aaron Ballman | 2b3bc4c | 2017-10-21 16:45:08 +0000 | [diff] [blame] | 92 | |
| Joerg Sonnenberger | c919968 | 2017-07-01 21:36:21 +0000 | [diff] [blame] | 93 | Deprecated Compiler Flags |
| 94 | ------------------------- |
| 95 | |
| 96 | The following options are deprecated and ignored. They will be removed in |
| 97 | future versions of Clang. |
| 98 | |
| Craig Topper | 5a43fdd | 2019-08-29 18:09:02 +0000 | [diff] [blame] | 99 | - -mmpx used to enable the __MPX__ preprocessor define for the Intel MPX |
| 100 | instructions. There were no MPX intrinsics. |
| 101 | - -mno-mpx used to disable -mmpx and is the default behavior. |
| 102 | |
| Hans Wennborg | fbb21e0 | 2017-07-19 14:14:07 +0000 | [diff] [blame] | 103 | - ... |
| Joerg Sonnenberger | c919968 | 2017-07-01 21:36:21 +0000 | [diff] [blame] | 104 | |
| Yuka Takahashi | ba900ab | 2018-03-07 11:34:02 +0000 | [diff] [blame] | 105 | Modified Compiler Flags |
| 106 | ----------------------- |
| 107 | |
| Eric Christopher | 030b17d | 2019-05-14 19:40:42 +0000 | [diff] [blame] | 108 | - ... |
| Yuka Takahashi | ba900ab | 2018-03-07 11:34:02 +0000 | [diff] [blame] | 109 | |
| Tyler Nowicki | db2668a | 2014-06-18 00:51:32 +0000 | [diff] [blame] | 110 | New Pragmas in Clang |
| Eugene Zelenko | ad5684a | 2018-05-15 21:45:01 +0000 | [diff] [blame] | 111 | -------------------- |
| Tyler Nowicki | db2668a | 2014-06-18 00:51:32 +0000 | [diff] [blame] | 112 | |
| Hans Wennborg | 1fe469a | 2019-01-16 10:57:02 +0000 | [diff] [blame] | 113 | - ... |
| Paul Robinson | f9ede1c | 2016-07-18 17:19:12 +0000 | [diff] [blame] | 114 | |
| 115 | Attribute Changes in Clang |
| 116 | -------------------------- |
| 117 | |
| Hans Wennborg | fbb21e0 | 2017-07-19 14:14:07 +0000 | [diff] [blame] | 118 | - ... |
| Paul Robinson | f9ede1c | 2016-07-18 17:19:12 +0000 | [diff] [blame] | 119 | |
| Hans Wennborg | 02dc000 | 2014-08-05 00:21:23 +0000 | [diff] [blame] | 120 | Windows Support |
| 121 | --------------- |
| 122 | |
| Hans Wennborg | 99c8651 | 2019-09-25 11:53:17 +0000 | [diff] [blame] | 123 | - Previous Clang versions contained a work-around to avoid an issue with the |
| 124 | standard library headers in Visual Studio 2019 versions prior to 16.3. This |
| 125 | work-around has now been removed, and users of Visual Studio 2019 are |
| 126 | encouraged to upgrade to 16.3 or later, otherwise they may see link errors as |
| 127 | below: |
| 128 | |
| 129 | .. code-block:: console |
| 130 | |
| 131 | error LNK2005: "bool const std::_Is_integral<int>" (??$_Is_integral@H@std@@3_NB) already defined |
| 132 | |
| 133 | |
| 134 | |
| Hans Wennborg | 02dc000 | 2014-08-05 00:21:23 +0000 | [diff] [blame] | 135 | |
| Renato Golin | f2fcddb | 2013-12-13 09:27:34 +0000 | [diff] [blame] | 136 | C Language Changes in Clang |
| 137 | --------------------------- |
| 138 | |
| Kristina Brooks | c0eb8a9 | 2019-06-05 03:47:02 +0000 | [diff] [blame] | 139 | - ... |
| Renato Golin | f2fcddb | 2013-12-13 09:27:34 +0000 | [diff] [blame] | 140 | |
| Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 141 | C11 Feature Support |
| 142 | ^^^^^^^^^^^^^^^^^^^ |
| 143 | |
| 144 | ... |
| 145 | |
| 146 | C++ Language Changes in Clang |
| 147 | ----------------------------- |
| 148 | |
| Martin Storsjo | 71decf8 | 2019-09-27 12:25:19 +0000 | [diff] [blame] | 149 | - The behaviour of the `gnu_inline` attribute now matches GCC, for cases |
| 150 | where used without the `extern` keyword. As this is a change compared to |
| 151 | how it behaved in previous Clang versions, a warning is emitted for this |
| 152 | combination. |
| Richard Smith | 8eb53c8 | 2016-05-05 18:40:37 +0000 | [diff] [blame] | 153 | |
| 154 | C++1z Feature Support |
| Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 155 | ^^^^^^^^^^^^^^^^^^^^^ |
| 156 | |
| 157 | ... |
| 158 | |
| 159 | Objective-C Language Changes in Clang |
| 160 | ------------------------------------- |
| 161 | |
| Hans Wennborg | 8f5b44a | 2019-07-18 11:51:05 +0000 | [diff] [blame] | 162 | - ... |
| Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 163 | |
| Erik Schnetter | 489700d | 2013-11-11 06:36:33 +0000 | [diff] [blame] | 164 | OpenCL C Language Changes in Clang |
| 165 | ---------------------------------- |
| 166 | |
| Bill Wendling | 0a794a4b | 2013-11-20 10:13:37 +0000 | [diff] [blame] | 167 | ... |
| Erik Schnetter | 489700d | 2013-11-11 06:36:33 +0000 | [diff] [blame] | 168 | |
| Richard Smith | 6822bd7 | 2018-10-26 19:26:45 +0000 | [diff] [blame] | 169 | ABI Changes in Clang |
| 170 | -------------------- |
| 171 | |
| Craig Topper | 6c8a34e | 2019-09-06 06:02:13 +0000 | [diff] [blame] | 172 | - gcc passes vectors of __int128 in memory on X86-64. Clang historically |
| 173 | broke the vectors into multiple scalars using two 64-bit values for each |
| 174 | element. Clang now matches the gcc behavior on Linux and NetBSD. You can |
| 175 | switch back to old API behavior with flag: -fclang-abi-compat=9.0. |
| Richard Smith | 6822bd7 | 2018-10-26 19:26:45 +0000 | [diff] [blame] | 176 | |
| Alexey Bataev | 44b6750 | 2016-05-31 11:17:08 +0000 | [diff] [blame] | 177 | OpenMP Support in Clang |
| Shoaib Meenai | 5be71fa | 2019-03-04 21:19:53 +0000 | [diff] [blame] | 178 | ----------------------- |
| Alexey Bataev | 44b6750 | 2016-05-31 11:17:08 +0000 | [diff] [blame] | 179 | |
| Hans Wennborg | 8f5b44a | 2019-07-18 11:51:05 +0000 | [diff] [blame] | 180 | - ... |
| Alexey Bataev | 44b6750 | 2016-05-31 11:17:08 +0000 | [diff] [blame] | 181 | |
| Jonas Hahnfeld | 8da9c2a | 2018-04-20 13:04:54 +0000 | [diff] [blame] | 182 | CUDA Support in Clang |
| 183 | --------------------- |
| 184 | |
| Hans Wennborg | 8f5b44a | 2019-07-18 11:51:05 +0000 | [diff] [blame] | 185 | - ... |
| Jonas Hahnfeld | 8da9c2a | 2018-04-20 13:04:54 +0000 | [diff] [blame] | 186 | |
| Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 187 | Internal API Changes |
| 188 | -------------------- |
| 189 | |
| Hans Wennborg | 8f5b44a | 2019-07-18 11:51:05 +0000 | [diff] [blame] | 190 | These are major API changes that have happened since the 9.0.0 release of |
| Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 191 | Clang. If upgrading an external codebase that uses Clang as a library, |
| 192 | this section should help get you past the largest hurdles of upgrading. |
| 193 | |
| Dmitri Gribenko | b22804b | 2019-08-30 09:29:34 +0000 | [diff] [blame] | 194 | - libTooling APIs that transfer ownership of `FrontendAction` objects now pass |
| 195 | them by `unique_ptr`, making the ownership transfer obvious in the type |
| 196 | system. `FrontendActionFactory::create()` now returns a |
| 197 | `unique_ptr<FrontendAction>`. `runToolOnCode`, `runToolOnCodeWithArgs`, |
| 198 | `ToolInvocation::ToolInvocation()` now take a `unique_ptr<FrontendAction>`. |
| 199 | |
| Shoaib Meenai | 5be71fa | 2019-03-04 21:19:53 +0000 | [diff] [blame] | 200 | Build System Changes |
| 201 | -------------------- |
| 202 | |
| Hans Wennborg | 8f5b44a | 2019-07-18 11:51:05 +0000 | [diff] [blame] | 203 | These are major changes to the build system that have happened since the 9.0.0 |
| Shoaib Meenai | 5be71fa | 2019-03-04 21:19:53 +0000 | [diff] [blame] | 204 | release of Clang. Users of the build system should adjust accordingly. |
| 205 | |
| 206 | - In 8.0.0 and below, the install-clang-headers target would install clang's |
| 207 | resource directory headers. This installation is now performed by the |
| 208 | install-clang-resource-headers target. Users of the old install-clang-headers |
| Shoaib Meenai | 20e7c0c | 2019-03-11 18:53:57 +0000 | [diff] [blame] | 209 | target should switch to the new install-clang-resource-headers target. The |
| 210 | install-clang-headers target now installs clang's API headers (corresponding |
| 211 | to its libraries), which is consistent with the install-llvm-headers target. |
| Shoaib Meenai | 5be71fa | 2019-03-04 21:19:53 +0000 | [diff] [blame] | 212 | |
| Chris Bieneman | a80a3a2b | 2019-08-14 16:49:52 +0000 | [diff] [blame] | 213 | - In 9.0.0 and later Clang added a new target, clang-cpp, which generates a |
| 214 | shared library comprised of all the clang component libraries and exporting |
| 215 | the clang C++ APIs. Additionally the build system gained the new |
| 216 | "CLANG_LINK_CLANG_DYLIB" option, which defaults Off, and when set to On, will |
| 217 | force clang (and clang-based tools) to link the clang-cpp library instead of |
| 218 | statically linking clang's components. This option will reduce the size of |
| 219 | binary distributions at the expense of compiler performance. |
| 220 | |
| 221 | - ... |
| Richard Smith | a0334a9 | 2015-05-14 00:22:12 +0000 | [diff] [blame] | 222 | |
| Aaron Ballman | cdc43af | 2015-09-17 13:47:22 +0000 | [diff] [blame] | 223 | AST Matchers |
| 224 | ------------ |
| Aaron Ballman | cdc43af | 2015-09-17 13:47:22 +0000 | [diff] [blame] | 225 | |
| Paul Hoad | ccc6f83 | 2019-03-22 22:47:34 +0000 | [diff] [blame] | 226 | - ... |
| Sylvestre Ledru | 72e3fa7 | 2017-03-14 09:43:55 +0000 | [diff] [blame] | 227 | |
| 228 | clang-format |
| 229 | ------------ |
| 230 | |
| Sam McCall | 08bfd9e | 2019-10-02 09:52:52 +0000 | [diff] [blame] | 231 | - The ``Standard`` style option specifies which version of C++ should be used |
| 232 | when parsing and formatting C++ code. The set of allowed values has changed: |
| Simon Pilgrim | 68f21b3 | 2019-10-05 16:08:17 +0000 | [diff] [blame] | 233 | |
| Sam McCall | 08bfd9e | 2019-10-02 09:52:52 +0000 | [diff] [blame] | 234 | - ``Latest`` will always enable new C++ language features. |
| 235 | - ``c++03``, ``c++11``, ``c++14``, ``c++17``, ``c++20`` will pin to exactly |
| 236 | that language version. |
| 237 | - ``Auto`` is the default and detects style from the code (this is unchanged). |
| Simon Pilgrim | 68f21b3 | 2019-10-05 16:08:17 +0000 | [diff] [blame] | 238 | |
| 239 | The previous values of ``Cpp03`` and ``Cpp11`` are deprecated. Note that |
| 240 | ``Cpp11`` is treated as ``Latest``, as this was always clang-format's behavior. |
| 241 | (One motivation for this change is the new name describes the behavior better). |
| Sylvestre Ledru | c941039 | 2017-12-05 09:23:47 +0000 | [diff] [blame] | 242 | |
| Ted Kremenek | 3a2291b | 2013-04-24 07:33:52 +0000 | [diff] [blame] | 243 | libclang |
| 244 | -------- |
| 245 | |
| Hans Wennborg | 8f5b44a | 2019-07-18 11:51:05 +0000 | [diff] [blame] | 246 | - ... |
| Ted Kremenek | 3a2291b | 2013-04-24 07:33:52 +0000 | [diff] [blame] | 247 | |
| Sylvestre Ledru | ea49d3a | 2016-08-06 20:23:54 +0000 | [diff] [blame] | 248 | |
| Anna Zaks | b6219a9 | 2013-04-25 23:14:38 +0000 | [diff] [blame] | 249 | Static Analyzer |
| Ted Kremenek | 004e823 | 2013-04-26 00:01:34 +0000 | [diff] [blame] | 250 | --------------- |
| Anna Zaks | b6219a9 | 2013-04-25 23:14:38 +0000 | [diff] [blame] | 251 | |
| Sylvestre Ledru | 9bea4ec | 2019-10-11 20:33:43 +0000 | [diff] [blame] | 252 | - The Clang analyzer checker ``DeadStores`` gets a new option called |
| 253 | ``WarnForDeadNestedAssignments`` to detect nested dead assignments |
| 254 | (enabled by default). |
| Hans Wennborg | 8f5b44a | 2019-07-18 11:51:05 +0000 | [diff] [blame] | 255 | - ... |
| Ted Kremenek | 004e823 | 2013-04-26 00:01:34 +0000 | [diff] [blame] | 256 | |
| Roman Lebedev | b69ba22 | 2018-07-30 18:58:30 +0000 | [diff] [blame] | 257 | .. _release-notes-ubsan: |
| 258 | |
| Vedant Kumar | 840c2c7 | 2017-06-13 02:52:31 +0000 | [diff] [blame] | 259 | Undefined Behavior Sanitizer (UBSan) |
| 260 | ------------------------------------ |
| 261 | |
| Roman Lebedev | 536b0ee | 2019-10-10 09:25:02 +0000 | [diff] [blame] | 262 | - * The ``pointer-overflow`` check was extended added to catch the cases where |
| 263 | a non-zero offset is applied to a null pointer, or the result of |
| 264 | applying the offset is a null pointer. |
| 265 | |
| 266 | .. code-block:: c++ |
| 267 | |
| 268 | #include <cstdint> // for intptr_t |
| 269 | |
| 270 | static char *getelementpointer_inbounds(char *base, unsigned long offset) { |
| 271 | // Potentially UB. |
| 272 | return base + offset; |
| 273 | } |
| 274 | |
| 275 | char *getelementpointer_unsafe(char *base, unsigned long offset) { |
| 276 | // Always apply offset. UB if base is ``nullptr`` and ``offset`` is not |
| 277 | // zero, or if ``base`` is non-``nullptr`` and ``offset`` is |
| 278 | // ``-reinterpret_cast<intptr_t>(base)``. |
| 279 | return getelementpointer_inbounds(base, offset); |
| 280 | } |
| 281 | |
| 282 | char *getelementpointer_safe(char *base, unsigned long offset) { |
| 283 | // Cast pointer to integer, perform usual arithmetic addition, |
| 284 | // and cast to pointer. This is legal. |
| 285 | char *computed = |
| 286 | reinterpret_cast<char *>(reinterpret_cast<intptr_t>(base) + offset); |
| 287 | // If either the pointer becomes non-``nullptr``, or becomes |
| 288 | // ``nullptr``, we must use ``computed`` result. |
| 289 | if (((base == nullptr) && (computed != nullptr)) || |
| 290 | ((base != nullptr) && (computed == nullptr))) |
| 291 | return computed; |
| 292 | // Else we can use ``getelementpointer_inbounds()``. |
| 293 | return getelementpointer_inbounds(base, offset); |
| 294 | } |
| 295 | |
| Roman Lebedev | bd1c087 | 2019-01-15 09:44:25 +0000 | [diff] [blame] | 296 | |
| Ted Kremenek | 004e823 | 2013-04-26 00:01:34 +0000 | [diff] [blame] | 297 | Core Analysis Improvements |
| 298 | ========================== |
| 299 | |
| Bill Wendling | 61f44cc | 2013-06-04 06:17:46 +0000 | [diff] [blame] | 300 | - ... |
| Ted Kremenek | 004e823 | 2013-04-26 00:01:34 +0000 | [diff] [blame] | 301 | |
| 302 | New Issues Found |
| 303 | ================ |
| 304 | |
| Bill Wendling | 61f44cc | 2013-06-04 06:17:46 +0000 | [diff] [blame] | 305 | - ... |
| Anna Zaks | b6219a9 | 2013-04-25 23:14:38 +0000 | [diff] [blame] | 306 | |
| Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 307 | Python Binding Changes |
| 308 | ---------------------- |
| 309 | |
| 310 | The following methods have been added: |
| 311 | |
| 312 | - ... |
| 313 | |
| 314 | Significant Known Problems |
| 315 | ========================== |
| 316 | |
| 317 | Additional Information |
| 318 | ====================== |
| 319 | |
| 320 | A wide variety of additional information is available on the `Clang web |
| Hans Wennborg | 0aa0d91 | 2018-09-10 08:51:25 +0000 | [diff] [blame] | 321 | page <https://clang.llvm.org/>`_. The web page contains versions of the |
| Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 322 | API documentation which are up-to-date with the Subversion version of |
| 323 | the source code. You can access versions of these documents specific to |
| 324 | this release by going into the "``clang/docs/``" directory in the Clang |
| 325 | tree. |
| 326 | |
| 327 | If you have any questions or comments about Clang, please feel free to |
| 328 | contact us via the `mailing |
| Hans Wennborg | 0aa0d91 | 2018-09-10 08:51:25 +0000 | [diff] [blame] | 329 | list <https://lists.llvm.org/mailman/listinfo/cfe-dev>`_. |