<?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 conditional-expr-4.m</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>53fa0490 - make clang print types as &quot;const int *&quot; instead of &quot;int const*&quot;,</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/SemaObjC/conditional-expr-4.m#53fa0490</link>
        <description>make clang print types as &quot;const int *&quot; instead of &quot;int const*&quot;,which is should have done from the beginning.  As usual, the mostfun with this sort of change is updating all the testcases.llvm-svn: 113090

            List of files:
            /llvm-project-15.0.7/clang/test/SemaObjC/conditional-expr-4.m</description>
        <pubDate>Sun, 05 Sep 2010 00:04:01 +0000</pubDate>
        <dc:creator>Chris Lattner &lt;sabre@nondot.org&gt;</dc:creator>
    </item>
<item>
        <title>b10646d4 - Improve diagnostics like &quot;initializing &lt;type&gt; from an expression of</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/SemaObjC/conditional-expr-4.m#b10646d4</link>
        <description>Improve diagnostics like &quot;initializing &lt;type&gt; from an expression oftype...&quot; with &quot;initializing &lt;type&gt; with an expression of type...&quot;,which reads better. Thanks to John for the improved wording.llvm-svn: 100873

            List of files:
            /llvm-project-15.0.7/clang/test/SemaObjC/conditional-expr-4.m</description>
        <pubDate>Fri, 09 Apr 2010 17:53:29 +0000</pubDate>
        <dc:creator>Douglas Gregor &lt;dgregor@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>c68e1406 - Improve diagnostics when we fail to convert from a source type to a</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/SemaObjC/conditional-expr-4.m#c68e1406</link>
        <description>Improve diagnostics when we fail to convert from a source type to adestination type for initialization, assignment, parameter-passing,etc. The main issue fixed here is that we used rather confusingwording for diagnostics such ast.c:2:9: warning: initializing &apos;char const [2]&apos; discards qualifiers,      expected &apos;char *&apos; [-pedantic]  char *name = __func__;        ^      ~~~~~~~~We&apos;re not initializing a &apos;char const [2]&apos;, we&apos;re initializing a &apos;char*&apos; with an expression of type &apos;char const [2]&apos;. Similar problemsexisted for other diagnostics in this area, so I&apos;ve normalized them allwith more precise descriptive text to say what we&apos;reinitializing/converting/assigning/etc. from and to. The warning forthe code above is now:t.c:2:9: warning: initializing &apos;char *&apos; from an expression of type      &apos;char const [2]&apos; discards qualifiers [-pedantic]  char *name = __func__;        ^      ~~~~~~~~Fixes &lt;rdar://problem/7447179&gt;.llvm-svn: 100832

            List of files:
            /llvm-project-15.0.7/clang/test/SemaObjC/conditional-expr-4.m</description>
        <pubDate>Fri, 09 Apr 2010 00:35:39 +0000</pubDate>
        <dc:creator>Douglas Gregor &lt;dgregor@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>8fbe78f6 - Update tests to use %clang_cc1 instead of &apos;clang-cc&apos; or &apos;clang -cc1&apos;.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/SemaObjC/conditional-expr-4.m#8fbe78f6</link>
        <description>Update tests to use %clang_cc1 instead of &apos;clang-cc&apos; or &apos;clang -cc1&apos;. - This is designed to make it obvious that %clang_cc1 is a &quot;test variable&quot;   which is substituted. It is &apos;%clang_cc1&apos; instead of &apos;%clang -cc1&apos; because it   can be useful to redefine what gets run as &apos;clang -cc1&apos; (for example, to set   a default target).llvm-svn: 91446

            List of files:
            /llvm-project-15.0.7/clang/test/SemaObjC/conditional-expr-4.m</description>
        <pubDate>Tue, 15 Dec 2009 20:14:24 +0000</pubDate>
        <dc:creator>Daniel Dunbar &lt;daniel@zuster.org&gt;</dc:creator>
    </item>
<item>
        <title>0399c1c9 - Change tests to use clang -cc1...</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/SemaObjC/conditional-expr-4.m#0399c1c9</link>
        <description>Change tests to use clang -cc1...llvm-svn: 91297

            List of files:
            /llvm-project-15.0.7/clang/test/SemaObjC/conditional-expr-4.m</description>
        <pubDate>Mon, 14 Dec 2009 17:36:25 +0000</pubDate>
        <dc:creator>Fariborz Jahanian &lt;fjahanian@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>85d9715c - Fix &lt;rdar://problem/7100524&gt; regression: &quot;error: incompatible operand types (&apos;void *&apos; and &apos;NSString *&apos;)&quot;.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/SemaObjC/conditional-expr-4.m#85d9715c</link>
        <description>Fix &lt;rdar://problem/7100524&gt; regression: &quot;error: incompatible operand types (&apos;void *&apos; and &apos;NSString *&apos;)&quot;.Remove XFAIL from &apos;conditional-expr-4.m&apos; test case (which would have caught this).Also tweaked several aspects of the test to jive with the current type checking.llvm-svn: 77453

            List of files:
            /llvm-project-15.0.7/clang/test/SemaObjC/conditional-expr-4.m</description>
        <pubDate>Wed, 29 Jul 2009 15:09:39 +0000</pubDate>
        <dc:creator>Steve Naroff &lt;snaroff@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>a45cf5b6 - Rename clang to clang-cc.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/SemaObjC/conditional-expr-4.m#a45cf5b6</link>
        <description>Rename clang to clang-cc.Tests and drivers updated, still need to shuffle dirs.llvm-svn: 67602

            List of files:
            /llvm-project-15.0.7/clang/test/SemaObjC/conditional-expr-4.m</description>
        <pubDate>Tue, 24 Mar 2009 02:24:46 +0000</pubDate>
        <dc:creator>Daniel Dunbar &lt;daniel@zuster.org&gt;</dc:creator>
    </item>
<item>
        <title>484603be - Iterate on sema for :? in Objective-C:</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/SemaObjC/conditional-expr-4.m#484603be</link>
        <description>Iterate on sema for :? in Objective-C: - Follow C99 behavior of using other operand type when one of   operands is a null pointer constant. - Fix overenthusiastic devolving of any Objective-C types to id:   o If either operand has an Objective-C object type then:     - If both operands are interfaces and either operand can be       assigned to the other, use that type as the composite type.     - Otherwise, if either type is id, use id as the composite type.     - Otherwise, warn about incompatible types and use id as the       composite type. - Return handling of qualified idea to separate test following   general pointer type checking.   o Upgraded from old code to allow devolving to id (without warning,     which matches GCC). - &lt;rdar://problem/6212771&gt;Add test case for issues fixed above, XFAIL though because it exposeda new issue in property handling.llvm-svn: 56135

            List of files:
            /llvm-project-15.0.7/clang/test/SemaObjC/conditional-expr-4.m</description>
        <pubDate>Thu, 11 Sep 2008 23:12:46 +0000</pubDate>
        <dc:creator>Daniel Dunbar &lt;daniel@zuster.org&gt;</dc:creator>
    </item>
</channel>
</rss>
