<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Software Archiveのトピックinternal error 0_381 ??</title>
    <link>https://community.intel.com/t5/Software-Archive/internal-error-0-381/m-p/746727#M2342</link>
    <description>Hi Felix,&lt;BR /&gt;&lt;BR /&gt;I have a report internally on a similar internal error which is instigated by optimizations. That should get resolved in a 12.1 update (i.e. C++ Composer XE 2011 future update). However, that's just speculation on my part unless you can send us a preprocessed version of your source file (using -P) along with the compiler options you used. Our Premer Support web site which you should have an account on for free if you have registered your software provides a convenient way for attaching files securely, so please do so if you're interested in following up. Thanks!</description>
    <pubDate>Tue, 11 Oct 2011 23:39:53 GMT</pubDate>
    <dc:creator>Brandon_H_Intel</dc:creator>
    <dc:date>2011-10-11T23:39:53Z</dc:date>
    <item>
      <title>internal error 0_381 ??</title>
      <link>https://community.intel.com/t5/Software-Archive/internal-error-0-381/m-p/746725#M2340</link>
      <description>(0): internal error: 0_381&lt;BR /&gt;&lt;BR /&gt;compilation aborted for x1.cpp (code 4)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Has anyone encountered this error&lt;BR /&gt;What does it mean?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 07 Oct 2011 17:52:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/internal-error-0-381/m-p/746725#M2340</guid>
      <dc:creator>Felix_Singer</dc:creator>
      <dc:date>2011-10-07T17:52:52Z</dc:date>
    </item>
    <item>
      <title>internal error 0_381 ??</title>
      <link>https://community.intel.com/t5/Software-Archive/internal-error-0-381/m-p/746726#M2341</link>
      <description>In case anyone interested, it was an issues with optimization. If you set -O1 or -O0 it "fixes" it. bummer</description>
      <pubDate>Tue, 11 Oct 2011 17:22:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/internal-error-0-381/m-p/746726#M2341</guid>
      <dc:creator>Felix_Singer</dc:creator>
      <dc:date>2011-10-11T17:22:45Z</dc:date>
    </item>
    <item>
      <title>internal error 0_381 ??</title>
      <link>https://community.intel.com/t5/Software-Archive/internal-error-0-381/m-p/746727#M2342</link>
      <description>Hi Felix,&lt;BR /&gt;&lt;BR /&gt;I have a report internally on a similar internal error which is instigated by optimizations. That should get resolved in a 12.1 update (i.e. C++ Composer XE 2011 future update). However, that's just speculation on my part unless you can send us a preprocessed version of your source file (using -P) along with the compiler options you used. Our Premer Support web site which you should have an account on for free if you have registered your software provides a convenient way for attaching files securely, so please do so if you're interested in following up. Thanks!</description>
      <pubDate>Tue, 11 Oct 2011 23:39:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/internal-error-0-381/m-p/746727#M2342</guid>
      <dc:creator>Brandon_H_Intel</dc:creator>
      <dc:date>2011-10-11T23:39:53Z</dc:date>
    </item>
    <item>
      <title>I've got an example that</title>
      <link>https://community.intel.com/t5/Software-Archive/internal-error-0-381/m-p/746728#M2343</link>
      <description>I've got an example that triggers it, in a nutshell perform the same assignment twice but differently:

&lt;C&gt;
#include &amp;lt;stdio.h&amp;gt;
#include &amp;lt;string.h&amp;gt;

struct test_s {
	int foo;
};

static void
copy_using_memcpy(struct test_s *pto, struct test_s *pfrom)
{
	memcpy(pto, pfrom, sizeof(struct test_s));
	return;
}

static void
copy_using_deref(struct test_s *pto, struct test_s *pfrom)
{
	*pto = *pfrom;
	return;
}

int
main(int argc, char *argv[])
{
	struct test_s a = {1};
	struct test_s b = {0};

	/* do the same assignment twice */
	copy_using_deref(&amp;amp;b, &amp;amp;a);
	copy_using_memcpy(&amp;amp;b, &amp;amp;a);

	/* prevent being optimised away */
	return b.foo == a.foo;
}
&lt;/C&gt;</description>
      <pubDate>Tue, 11 Sep 2012 07:00:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/internal-error-0-381/m-p/746728#M2343</guid>
      <dc:creator>Sebastian_Freundt</dc:creator>
      <dc:date>2012-09-11T07:00:13Z</dc:date>
    </item>
  </channel>
</rss>

