<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in ast-dump-types-errors-json.cpp</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>6d8e5c96 - [NFC] Make file offsets a regex to handle CRLF</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/AST/ast-dump-types-errors-json.cpp#6d8e5c96</link>
        <description>[NFC] Make file offsets a regex to handle CRLFNone of these tests are really intended to test the file offset as muchas to test the structure. Making the regex allows this test to workeven if the file is checked out with CRLF line endings.Reviewed By: aaron.ballmanDifferential Revision: https://reviews.llvm.org/D119362

            List of files:
            /llvm-project-15.0.7/clang/test/AST/ast-dump-types-errors-json.cpp</description>
        <pubDate>Wed, 19 Jan 2022 23:55:20 +0000</pubDate>
        <dc:creator>Chris Bieneman &lt;cbieneman@microsoft.com&gt;</dc:creator>
    </item>
<item>
        <title>aee49255 - Recommit: Compress formatting of array type names (int [4] -&gt; int[4])</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/AST/ast-dump-types-errors-json.cpp#aee49255</link>
        <description>Recommit: Compress formatting of array type names (int [4] -&gt; int[4])Based on post-commit review discussion on2bd84938470bf2e337801faafb8a67710f46429d with Richard Smith.Other uses of forcing HasEmptyPlaceHolder to false seem OK to me -they&apos;re all around pointer/reference types where the pointer/referencetoken will appear at the rightmost side of the left side of the typename, so they make nested types (eg: the &quot;int&quot; in &quot;int *&quot;) behave asthough there is a non-empty placeholder (because the &quot;*&quot; is essentiallythe placeholder as far as the &quot;int&quot; is concerned).This was originally committed in 277623f4d5a672d707390e2c3eaf30a9eb4b075cReverted in f9ad1d1c775a8e264bebc15d75e0c6e5c20eefc7 due to breakagesoutside of clang - lldb seems to have some strange/strong dependence on&quot;char [N]&quot; versus &quot;char[N]&quot; when printing strings (not due to that nameappearing in DWARF, but probably due to using clang to stringify typenames) that&apos;ll need to be addressed, plus a few other odds and ends inother subprojects (clang-tools-extra, compiler-rt, etc).

            List of files:
            /llvm-project-15.0.7/clang/test/AST/ast-dump-types-errors-json.cpp</description>
        <pubDate>Thu, 14 Oct 2021 21:52:47 +0000</pubDate>
        <dc:creator>David Blaikie &lt;dblaikie@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>f9ad1d1c - Revert &quot;Compress formatting of array type names (int [4] -&gt; int[4])&quot;</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/AST/ast-dump-types-errors-json.cpp#f9ad1d1c</link>
        <description>Revert &quot;Compress formatting of array type names (int [4] -&gt; int[4])&quot;Looks like lldb has some issues with this - somehow it causes lldb totreat a &quot;char[N]&quot; type as an array of chars (prints them outindividually) but a &quot;char [N]&quot; is printed as a string. (even though theDWARF doesn&apos;t have this string in it - it&apos;s something to do with thestring lldb generates for itself using clang)This reverts commit 277623f4d5a672d707390e2c3eaf30a9eb4b075c.

            List of files:
            /llvm-project-15.0.7/clang/test/AST/ast-dump-types-errors-json.cpp</description>
        <pubDate>Thu, 14 Oct 2021 21:48:17 +0000</pubDate>
        <dc:creator>David Blaikie &lt;dblaikie@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>277623f4 - Compress formatting of array type names (int [4] -&gt; int[4])</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/AST/ast-dump-types-errors-json.cpp#277623f4</link>
        <description>Compress formatting of array type names (int [4] -&gt; int[4])Based on post-commit review discussion on2bd84938470bf2e337801faafb8a67710f46429d with Richard Smith.Other uses of forcing HasEmptyPlaceHolder to false seem OK to me -they&apos;re all around pointer/reference types where the pointer/referencetoken will appear at the rightmost side of the left side of the typename, so they make nested types (eg: the &quot;int&quot; in &quot;int *&quot;) behave asthough there is a non-empty placeholder (because the &quot;*&quot; is essentiallythe placeholder as far as the &quot;int&quot; is concerned).

            List of files:
            /llvm-project-15.0.7/clang/test/AST/ast-dump-types-errors-json.cpp</description>
        <pubDate>Thu, 14 Oct 2021 21:07:51 +0000</pubDate>
        <dc:creator>David Blaikie &lt;dblaikie@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>aef5d8fd - [clang] NFC: Rename rvalue to prvalue</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/AST/ast-dump-types-errors-json.cpp#aef5d8fd</link>
        <description>[clang] NFC: Rename rvalue to prvalueThis renames the expression value categories from rvalue to prvalue,keeping nomenclature consistent with C++11 onwards.C++ has the most complicated taxonomy here, and every other languageonly uses a subset of it, so it&apos;s less confusing to use the C++ namesconsistently, and mentally remap to the C names when working on thatcontext (prvalue -&gt; rvalue, no xvalues, etc).Renames:* VK_RValue -&gt; VK_PRValue* Expr::isRValue -&gt; Expr::isPRValue* SK_QualificationConversionRValue -&gt; SK_QualificationConversionPRValue* JSON AST Dumper Expression nodes value category: &quot;rvalue&quot; -&gt; &quot;prvalue&quot;Signed-off-by: Matheus Izvekov &lt;mizvekov@gmail.com&gt;Reviewed By: rsmithDifferential Revision: https://reviews.llvm.org/D103720

            List of files:
            /llvm-project-15.0.7/clang/test/AST/ast-dump-types-errors-json.cpp</description>
        <pubDate>Fri, 04 Jun 2021 21:15:23 +0000</pubDate>
        <dc:creator>Matheus Izvekov &lt;mizvekov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>493d8059 - [AST] Dump containsErrors bit for the Type.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/AST/ast-dump-types-errors-json.cpp#493d8059</link>
        <description>[AST] Dump containsErrors bit for the Type.Reviewers: sammccallSubscribers: cfe-commitsTags: #clangDifferential Revision: https://reviews.llvm.org/D81912

            List of files:
            /llvm-project-15.0.7/clang/test/AST/ast-dump-types-errors-json.cpp</description>
        <pubDate>Tue, 16 Jun 2020 07:08:02 +0000</pubDate>
        <dc:creator>Haojian Wu &lt;hokein.wu@gmail.com&gt;</dc:creator>
    </item>
</channel>
</rss>
