<?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 parallel_for_simd_copyin_messages.cpp</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>a914888b - [OPENMP]Add -Wunintialized to the erroneous tests for future fix PR42392,</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/OpenMP/parallel_for_simd_copyin_messages.cpp#a914888b</link>
        <description>[OPENMP]Add -Wunintialized to the erroneous tests for future fix PR42392,NFC.llvm-svn: 365334

            List of files:
            /llvm-project-15.0.7/clang/test/OpenMP/parallel_for_simd_copyin_messages.cpp</description>
        <pubDate>Mon, 08 Jul 2019 15:45:24 +0000</pubDate>
        <dc:creator>Alexey Bataev &lt;a.bataev@hotmail.com&gt;</dc:creator>
    </item>
<item>
        <title>a8a9153a - [OPENMP] Support for -fopenmp-simd option with compilation of simd loops</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/OpenMP/parallel_for_simd_copyin_messages.cpp#a8a9153a</link>
        <description>[OPENMP] Support for -fopenmp-simd option with compilation of simd loopsonly.Added support for -fopenmp-simd option that allows compilation ofsimd-based constructs without emission of OpenMP runtime calls.llvm-svn: 321560

            List of files:
            /llvm-project-15.0.7/clang/test/OpenMP/parallel_for_simd_copyin_messages.cpp</description>
        <pubDate>Fri, 29 Dec 2017 18:07:07 +0000</pubDate>
        <dc:creator>Alexey Bataev &lt;a.bataev@hotmail.com&gt;</dc:creator>
    </item>
<item>
        <title>c5970623 - Revert &quot;[OPENMP] Allow skip expression after comma in clauses with lists.&quot;</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/OpenMP/parallel_for_simd_copyin_messages.cpp#c5970623</link>
        <description>Revert &quot;[OPENMP] Allow skip expression after comma in clauses with lists.&quot;This reverts commit http://reviews.llvm.org/rL265003. After somethoughts decided to emit errors here.llvm-svn: 265119

            List of files:
            /llvm-project-15.0.7/clang/test/OpenMP/parallel_for_simd_copyin_messages.cpp</description>
        <pubDate>Fri, 01 Apr 2016 08:43:42 +0000</pubDate>
        <dc:creator>Alexey Bataev &lt;a.bataev@hotmail.com&gt;</dc:creator>
    </item>
<item>
        <title>05968174 - [OPENMP] Allow skip expression after comma in clauses with lists.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/OpenMP/parallel_for_simd_copyin_messages.cpp#05968174</link>
        <description>[OPENMP] Allow skip expression after comma in clauses with lists.Compatibility fix for better compatibility with the existing software.llvm-svn: 265003

            List of files:
            /llvm-project-15.0.7/clang/test/OpenMP/parallel_for_simd_copyin_messages.cpp</description>
        <pubDate>Thu, 31 Mar 2016 09:13:44 +0000</pubDate>
        <dc:creator>Alexey Bataev &lt;a.bataev@hotmail.com&gt;</dc:creator>
    </item>
<item>
        <title>db39021c - [OPENMP] -fopenmp enables OpenMP support (fix for http://llvm.org/PR23492)</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/OpenMP/parallel_for_simd_copyin_messages.cpp#db39021c</link>
        <description>[OPENMP] -fopenmp enables OpenMP support (fix for http://llvm.org/PR23492)-fopenmp turns on OpenMP support and links libiomp5 as OpenMP library. Also there is -fopenmp={libiomp5|libgomp} option that allows to override effect of -fopenmp and link libgomp library (if -fopenmp=libgomp is specified).Differential Revision: http://reviews.llvm.org/D9736llvm-svn: 237769

            List of files:
            /llvm-project-15.0.7/clang/test/OpenMP/parallel_for_simd_copyin_messages.cpp</description>
        <pubDate>Wed, 20 May 2015 04:24:19 +0000</pubDate>
        <dc:creator>Alexey Bataev &lt;a.bataev@hotmail.com&gt;</dc:creator>
    </item>
<item>
        <title>6ddfe1a6 - [OPENMP] Fix for checking of data-sharing attributes for canonical var decls only.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/OpenMP/parallel_for_simd_copyin_messages.cpp#6ddfe1a6</link>
        <description>[OPENMP] Fix for checking of data-sharing attributes for canonical var decls only.Currently checks for active data-sharing attributes for variables are performed for found var decls. Instead these checks must be performed for canonical decls of these variables to avoid possible troubles with with the differently qualified re-declarations of the same variable, for example:namespace A { int x; }namespace B { using A::x; }Both A::x and B::x actually reference the same object A::x and this fact must be taken into account during data-sharing attributes analysis.llvm-svn: 235096

            List of files:
            /llvm-project-15.0.7/clang/test/OpenMP/parallel_for_simd_copyin_messages.cpp</description>
        <pubDate>Thu, 16 Apr 2015 13:49:42 +0000</pubDate>
        <dc:creator>Alexey Bataev &lt;a.bataev@hotmail.com&gt;</dc:creator>
    </item>
<item>
        <title>f56f98c9 - [OPENMP] Codegen for &apos;copyin&apos; clause in &apos;parallel&apos; directive.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/OpenMP/parallel_for_simd_copyin_messages.cpp#f56f98c9</link>
        <description>[OPENMP] Codegen for &apos;copyin&apos; clause in &apos;parallel&apos; directive.Emits the following code for the clause at the beginning of the outlined function for implicit threads:if (&lt;not a master thread&gt;) {  ...  &lt;thread local copy of var&gt; = &lt;master thread local copy of var&gt;;  ...}&lt;sync point&gt;;Checking for a non-master thread is performed by comparing of the address of the thread local variable with the address of the master&apos;s variable. Master thread always uses original variables, so you always know the address of the variable in the master thread.Differential Revision: http://reviews.llvm.org/D9026llvm-svn: 235075

            List of files:
            /llvm-project-15.0.7/clang/test/OpenMP/parallel_for_simd_copyin_messages.cpp</description>
        <pubDate>Thu, 16 Apr 2015 05:39:01 +0000</pubDate>
        <dc:creator>Alexey Bataev &lt;a.bataev@hotmail.com&gt;</dc:creator>
    </item>
<item>
        <title>e4e893bb - [OPENMP] Parsing/Sema of directive omp parallel for simd</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/OpenMP/parallel_for_simd_copyin_messages.cpp#e4e893bb</link>
        <description>[OPENMP] Parsing/Sema of directive omp parallel for simdllvm-svn: 218299

            List of files:
            /llvm-project-15.0.7/clang/test/OpenMP/parallel_for_simd_copyin_messages.cpp</description>
        <pubDate>Tue, 23 Sep 2014 09:33:00 +0000</pubDate>
        <dc:creator>Alexander Musman &lt;alexander.musman@gmail.com&gt;</dc:creator>
    </item>
</channel>
</rss>
