<?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 loop_with_condition.ll</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>50153213 - [test][NewPM] Remove RUN lines using -analyze</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Analysis/RegionInfo/loop_with_condition.ll#50153213</link>
        <description>[test][NewPM] Remove RUN lines using -analyzeOnly tests in llvm/test/Analysis.-analyze is legacy PM-specific.This only touches files with `-passes`.I looked through everything and made sure that everything had a new PM equivalent.Reviewed By: MaskRayDifferential Revision: https://reviews.llvm.org/D109040

            List of files:
            /llvm-project-15.0.7/llvm/test/Analysis/RegionInfo/loop_with_condition.ll</description>
        <pubDate>Wed, 01 Sep 2021 02:26:35 +0000</pubDate>
        <dc:creator>Arthur Eubanks &lt;aeubanks@google.com&gt;</dc:creator>
    </item>
<item>
        <title>e0c7641d - [RegionInfo][NewPM] Fix RegionInfo tests to work under NPM</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Analysis/RegionInfo/loop_with_condition.ll#e0c7641d</link>
        <description>[RegionInfo][NewPM] Fix RegionInfo tests to work under NPMPin RUN lines with -analyze to legacy PM, add corresponding NPM RUN line if missing.Reviewed By: asbirleaDifferential Revision: https://reviews.llvm.org/D87658

            List of files:
            /llvm-project-15.0.7/llvm/test/Analysis/RegionInfo/loop_with_condition.ll</description>
        <pubDate>Tue, 15 Sep 2020 00:49:58 +0000</pubDate>
        <dc:creator>Arthur Eubanks &lt;aeubanks@google.com&gt;</dc:creator>
    </item>
<item>
        <title>c0e6b8ac - IR: Support parsing numeric block ids, and emit them in textual output.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Analysis/RegionInfo/loop_with_condition.ll#c0e6b8ac</link>
        <description>IR: Support parsing numeric block ids, and emit them in textual output.Just as as llvm IR supports explicitly specifying numeric value idsfor instructions, and emits them by default in textual output, now dothe same for blocks.This is a slightly incompatible change in the textual IR format.Previously, llvm would parse numeric labels as string names. E.g.  define void @f() {    br label %&quot;55&quot;  55:    ret void  }defined a label *named* &quot;55&quot;, even without needing to be quoted, whilethe reference required quoting. Now, if you intend a block label whichlooks like a value number to be a name, you must quote it in thedefinition too (e.g. `&quot;55&quot;:`).Previously, llvm would print nameless blocks only as a comment, andwould omit it if there was no predecessor. This could cause confusionfor readers of the IR, just as unnamed instructions did prior to theaddition of &quot;%5 = &quot; syntax, back in 2008 (PR2480).Now, it will always print a label for an unnamed block, with theexception of the entry block. (IMO it may be better to print it forthe entry-block as well. However, that requires updating many moretests.)Thus, the following is supported, and is the canonical printing:  define i32 @f(i32, i32) {    %3 = add i32 %0, %1    br label %4  4:    ret i32 %3  }New test cases covering this behavior are added, and other testsupdated as required.Differential Revision: https://reviews.llvm.org/D58548llvm-svn: 356789

            List of files:
            /llvm-project-15.0.7/llvm/test/Analysis/RegionInfo/loop_with_condition.ll</description>
        <pubDate>Fri, 22 Mar 2019 18:27:13 +0000</pubDate>
        <dc:creator>James Y Knight &lt;jyknight@google.com&gt;</dc:creator>
    </item>
<item>
        <title>670a5d88 - [tests] Do not emity binary bitcode to stdout in RegionInfo tests</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Analysis/RegionInfo/loop_with_condition.ll#670a5d88</link>
        <description>[tests] Do not emity binary bitcode to stdout in RegionInfo testsllvm-svn: 309485

            List of files:
            /llvm-project-15.0.7/llvm/test/Analysis/RegionInfo/loop_with_condition.ll</description>
        <pubDate>Sat, 29 Jul 2017 09:58:43 +0000</pubDate>
        <dc:creator>Tobias Grosser &lt;tobias@grosser.es&gt;</dc:creator>
    </item>
<item>
        <title>bc53977a - Introduce RegionInfoAnalysis, which compute Region Tree in the new PassManager. NFC</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Analysis/RegionInfo/loop_with_condition.ll#bc53977a</link>
        <description>Introduce RegionInfoAnalysis, which compute Region Tree in the new PassManager. NFCDifferential Revision: http://reviews.llvm.org/D17571llvm-svn: 261904

            List of files:
            /llvm-project-15.0.7/llvm/test/Analysis/RegionInfo/loop_with_condition.ll</description>
        <pubDate>Thu, 25 Feb 2016 17:54:25 +0000</pubDate>
        <dc:creator>Hongbin Zheng &lt;etherzhhb@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>921fabf3 - Revert &quot;Introduce RegionInfoAnalysis, which compute Region Tree in the new PassManager. NFC&quot;</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Analysis/RegionInfo/loop_with_condition.ll#921fabf3</link>
        <description>Revert &quot;Introduce RegionInfoAnalysis, which compute Region Tree in the new PassManager. NFC&quot;This reverts commit 8228b4d374edeb4cc0c5fddf6e1ab876918ee126.llvm-svn: 261889

            List of files:
            /llvm-project-15.0.7/llvm/test/Analysis/RegionInfo/loop_with_condition.ll</description>
        <pubDate>Thu, 25 Feb 2016 16:45:37 +0000</pubDate>
        <dc:creator>Hongbin Zheng &lt;etherzhhb@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>2fa386fd - Introduce RegionInfoAnalysis, which compute Region Tree in the new PassManager. NFC</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Analysis/RegionInfo/loop_with_condition.ll#2fa386fd</link>
        <description>Introduce RegionInfoAnalysis, which compute Region Tree in the new PassManager. NFCDifferential Revision: http://reviews.llvm.org/D17571llvm-svn: 261884

            List of files:
            /llvm-project-15.0.7/llvm/test/Analysis/RegionInfo/loop_with_condition.ll</description>
        <pubDate>Thu, 25 Feb 2016 16:33:26 +0000</pubDate>
        <dc:creator>Hongbin Zheng &lt;etherzhhb@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>6dc30760 - Revert the test moves from 176733.  Use &quot;REQUIRES: asserts&quot; instead.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Analysis/RegionInfo/loop_with_condition.ll#6dc30760</link>
        <description>Revert the test moves from 176733.  Use &quot;REQUIRES: asserts&quot; instead.llvm-svn: 176873

            List of files:
            /llvm-project-15.0.7/llvm/test/Analysis/RegionInfo/loop_with_condition.ll</description>
        <pubDate>Tue, 12 Mar 2013 16:27:52 +0000</pubDate>
        <dc:creator>Jan Wen Voung &lt;jvoung@google.com&gt;</dc:creator>
    </item>
<item>
        <title>5da53436 - Convert the uses of &apos;|&amp;&apos; to use &apos;2&gt;&amp;1 |&apos; instead, which works on old</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Analysis/RegionInfo/loop_with_condition.ll#5da53436</link>
        <description>Convert the uses of &apos;|&amp;&apos; to use &apos;2&gt;&amp;1 |&apos; instead, which works on oldversions of Bash. In addition, I can back out the change to the litbuilt-in shell test runner to support this.This should fix the majority of fallout on Darwin, but I suspect therewill be a few straggling issues.llvm-svn: 159544

            List of files:
            /llvm-project-15.0.7/llvm/test/Analysis/RegionInfo/loop_with_condition.ll</description>
        <pubDate>Mon, 02 Jul 2012 18:37:59 +0000</pubDate>
        <dc:creator>Chandler Carruth &lt;chandlerc@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>336734ac - Add new RegionInfo pass.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Analysis/RegionInfo/loop_with_condition.ll#336734ac</link>
        <description>Add new RegionInfo pass.The RegionInfo pass detects single entry single exit regions in a function,where a region is defined as any subgraph that is connected to the remaininggraph at only two spots.Furthermore an hierarchical region tree is built.Use it by calling &quot;opt -regions analyze&quot; or &quot;opt -view-regions&quot;.llvm-svn: 109089

            List of files:
            /llvm-project-15.0.7/llvm/test/Analysis/RegionInfo/loop_with_condition.ll</description>
        <pubDate>Thu, 22 Jul 2010 07:46:31 +0000</pubDate>
        <dc:creator>Tobias Grosser &lt;grosser@fim.uni-passau.de&gt;</dc:creator>
    </item>
</channel>
</rss>
