<?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>topic gcc 5.1 -mfpmath=387 Floating point exception in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015475#M35890</link>
    <description>&lt;P&gt;It appears that the compiler option -mfpmath=387 immediately causes floating point exceptions on Intel architecture processors in cilk_spawn routines compiled with gcc-5.1 cilk.&amp;nbsp; This seems to be a regression as gcc-4.9 with the cilk patches works fine.&amp;nbsp; Note that -mfpmath=sse works on 64-bit machines, however, this option is not available for 32-bit Intel machines.&amp;nbsp; As far as I can tell, most floating point code is affected.&amp;nbsp; Does anyone know of patches or workarounds for this, especially as this appears to be a show-stopper on 32-bit Intel.&lt;/P&gt;</description>
    <pubDate>Mon, 25 May 2015 18:16:36 GMT</pubDate>
    <dc:creator>Eric_O_</dc:creator>
    <dc:date>2015-05-25T18:16:36Z</dc:date>
    <item>
      <title>gcc 5.1 -mfpmath=387 Floating point exception</title>
      <link>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015475#M35890</link>
      <description>&lt;P&gt;It appears that the compiler option -mfpmath=387 immediately causes floating point exceptions on Intel architecture processors in cilk_spawn routines compiled with gcc-5.1 cilk.&amp;nbsp; This seems to be a regression as gcc-4.9 with the cilk patches works fine.&amp;nbsp; Note that -mfpmath=sse works on 64-bit machines, however, this option is not available for 32-bit Intel machines.&amp;nbsp; As far as I can tell, most floating point code is affected.&amp;nbsp; Does anyone know of patches or workarounds for this, especially as this appears to be a show-stopper on 32-bit Intel.&lt;/P&gt;</description>
      <pubDate>Mon, 25 May 2015 18:16:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015475#M35890</guid>
      <dc:creator>Eric_O_</dc:creator>
      <dc:date>2015-05-25T18:16:36Z</dc:date>
    </item>
    <item>
      <title>I've done a little checking. </title>
      <link>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015476#M35891</link>
      <description>&lt;P&gt;I've done a little checking.&amp;nbsp; The problem with -mfpmath=387 appears for me using the gcc-4.9.2 mainline and gcc-5.1.0 mainline compilers but not with the svn cilkplus and cilkplus-4_8-branch.&amp;nbsp; I'm compiling on Debian Wheezy, if that makes any difference.&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2015 04:46:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015476#M35891</guid>
      <dc:creator>Eric_O_</dc:creator>
      <dc:date>2015-05-27T04:46:40Z</dc:date>
    </item>
    <item>
      <title>I've created a simple test</title>
      <link>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015477#M35892</link>
      <description>&lt;P&gt;I've created a simple test program to illustrate this bug&lt;/P&gt;

&lt;PRE class="brush:plain;"&gt;#include &amp;lt;stdio.h&amp;gt;
#include &amp;lt;stdlib.h&amp;gt;
#include &amp;lt;math.h&amp;gt;
#include &amp;lt;time.h&amp;gt;
#include &amp;lt;cilk/cilk.h&amp;gt;

const struct timespec onesec={1,0};

double f(double x){
    nanosleep(&amp;amp;onesec,0);
    return 2*x*sin(x);
}
double g(double x){
    nanosleep(&amp;amp;onesec,0);
    return x*cos(x);
}

int main(){
    double a,b;
    a=cilk_spawn f(1);
    b=cilk_spawn g(2);
    cilk_sync;
    printf("f(1)+g(2)=%g\n",a+b);
    return 0;
}&lt;/PRE&gt;

&lt;P&gt;When I compile this program with gcc-5.1 mainline and the cilkplus-4_8-branch I obtain&lt;/P&gt;

&lt;PRE class="brush:plain;"&gt;$ /usr/local/gcc-5.1/bin/gcc -fcilkplus -Wall \
        -mfpmath=387 fpbug.c -o fpbug-gcc510-387 -lcilkrts -lm
$ ./fpbug-gcc510-387
Floating point exception&lt;/PRE&gt;

&lt;PRE class="brush:plain;"&gt;$ /usr/local/gcc-5.1/bin/gcc -fcilkplus -Wall \
        -mfpmath=sse fpbug.c -o fpbug-gcc510-sse -lcilkrts -lm
$ ./fpbug-gcc510-sse
f(1)+g(2)=0.850648&lt;/PRE&gt;

&lt;PRE class="brush:plain;"&gt;$ /usr/local/cilk-4.8/bin/gcc -fcilkplus -Wall \
        -mfpmath=387 fpbug.c -o fpbug-cilk48-387 -lcilkrts -lm
$ ./fpbug-cilk48-387
f(1)+g(2)=0.850648&lt;/PRE&gt;

&lt;PRE class="brush:plain;"&gt;$ /usr/local/cilk-4.8/bin/gcc -fcilkplus -Wall \
        -mfpmath=sse fpbug.c -o fpbug-cilk48-sse -lcilkrts -lm
$ ./fpbug-cilk48-sse
f(1)+g(2)=0.850648&lt;/PRE&gt;

&lt;P&gt;Can anyone else reproduce this bug with gcc-5.1 mainline?&amp;nbsp; What can I do to fix this?&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2015 18:26:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015477#M35892</guid>
      <dc:creator>Eric_O_</dc:creator>
      <dc:date>2015-05-28T18:26:33Z</dc:date>
    </item>
    <item>
      <title>Thanks for the reproducing</title>
      <link>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015478#M35893</link>
      <description>&lt;P&gt;Thanks for the reproducing example. &amp;nbsp;I don't personally happen to have immediate access to that combination of compiler / OS that you specified, but hopefully someone who does can look into it.&lt;BR /&gt;
	&lt;BR /&gt;
	Quick question: does the error occur even if the environment variable CILK_NWORKERS=1 is set, or is CILK_NWORKERS &amp;gt;=2 required?&lt;BR /&gt;
	&lt;SPAN style="font-size: 13.0080003738403px; line-height: 17.7381820678711px;"&gt;If the program fails even when running on a single thread, then that suggests a different kind of error than if 2 or more threads are required.&lt;/SPAN&gt;&lt;BR style="font-size: 13.0080003738403px; line-height: 17.7381820678711px;" /&gt;
	&lt;BR /&gt;
	Any chance you can reproduce the error in gdb or some other debugger and generate a stack trace or identify which basic block where the error is being tripped? &amp;nbsp; Is the error tripped in the compute of f, compute of g, or in the sum after the cilk_sync?&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Jim&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2015 19:09:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015478#M35893</guid>
      <dc:creator>Jim_S_Intel</dc:creator>
      <dc:date>2015-05-28T19:09:48Z</dc:date>
    </item>
    <item>
      <title>The error is seems to be</title>
      <link>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015479#M35894</link>
      <description>&lt;P&gt;The error seems to be caused by lack of fpu initialization in one of the worker threads.&amp;nbsp; In particular, it does not happen with CILK_NWORKERS=1.&amp;nbsp; The gdb backtrace looks like&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;$ CILK_NWORKERS=2 gdb ./fpbug-gcc510-387
GNU gdb (GDB) 7.4.1-debian
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later &amp;lt;http://gnu.org/licenses/gpl.html&amp;gt;
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
For bug reporting instructions, please see:
&amp;lt;http://www.gnu.org/software/gdb/bugs/&amp;gt;...
Reading symbols from /x/jesa/ejolson/code/cilk/fpbug/fpbug-gcc510-387...done.
(gdb) run
Starting program: /x/jesa/ejolson/code/cilk/fpbug/fpbug-gcc510-387 
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
[New Thread 0x7ffff6bec700 (LWP 22698)]

Program received signal SIGFPE, Arithmetic exception.
[Switching to Thread 0x7ffff6bec700 (LWP 22698)]
0x00000000004009be in g ()
(gdb) backtrace
#0  0x00000000004009be in g ()
#1  0x0000000000400f71 in _cilk_spn_1.4026 ()
#2  0x0000000000400a87 in main ()
(gdb) &lt;/PRE&gt;

&lt;P&gt;which seems to support this.&amp;nbsp; My impression is that this is a general problem with the gcc-5.1.0 Cilk implementation and not Debian, as I get the exact same behavior on CentOS and in CLE/SUSE.&amp;nbsp; At the same time, I find it odd that nobody has reported this error before, as the same problem seems present in gcc-4.9.2 mainline.&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2015 00:01:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015479#M35894</guid>
      <dc:creator>Eric_O_</dc:creator>
      <dc:date>2015-05-29T00:01:00Z</dc:date>
    </item>
    <item>
      <title>Hm... there is code in the</title>
      <link>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015480#M35895</link>
      <description>&lt;P&gt;Hm... there is code in the Cilk Plus runtime which is supposed to be restoring the floating-point control state after resuming the continuation (i.e., the code after the first spawn of f()). &amp;nbsp; &amp;nbsp;&amp;nbsp;The compiler is also supposed to have generated code on a spawn to save that state. &amp;nbsp;&lt;SPAN style="font-size: 13.0080003738403px; line-height: 17.7381820678711px;"&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;If that state is not saved or restored correctly somehow, that seems like it could be related to the error you are seeing.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;I don't recall exactly which version of the runtime source you are building from, but in the runtime source revision 4345 on &lt;A href="http://cilkplus.org" target="_blank"&gt;http://cilkplus.org&lt;/A&gt;, the functions "&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.0080003738403px; line-height: 17.7381820678711px;"&gt;sysdep_save_fp_ctrl_state&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;" and "restore_x86_fp_state" are the relevant functions that the compiler/runtime would call to save that state. &amp;nbsp; &amp;nbsp;I see that there is a "config/x86" version and a "config/generic" version; I'm not quite sure which one you might be building with?&lt;BR /&gt;
	One possibility is that&amp;nbsp;somehow the "generic" version is getting built/called where the "x86" version was supposed to be called?&lt;/SPAN&gt;&lt;BR /&gt;
	&lt;BR /&gt;
	&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;If the compiler is generating inline code for sysdep_save_fp_ctrl_state, then the function in the runtime might not be called at all. &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;I also see some inline assembly in those functions which has some checks related to "sse"... &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.0080003738403px; line-height: 17.7381820678711px;"&gt;Another possibility is that the wrong implementation of those functions might be there for those flags? &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.0080003738403px; line-height: 17.7381820678711px;"&gt;I'm not an expert on this section of the code, so I don't know exactly what is supposed to happen on every platform, but it does seem like a possible place for a bug...&lt;/SPAN&gt;&lt;BR /&gt;
	&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2015 01:19:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015480#M35895</guid>
      <dc:creator>Jim_S_Intel</dc:creator>
      <dc:date>2015-05-29T01:19:42Z</dc:date>
    </item>
    <item>
      <title>I did some further</title>
      <link>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015481#M35896</link>
      <description>&lt;P&gt;I did further investigation based on Jim's thoughts and found the followings.&lt;/P&gt;

&lt;P&gt;1. "gcc-5-branch" (5.x mainline) is building libcilkrts with "config/x86" (correct one)&lt;/P&gt;

&lt;P&gt;2. The binary compiled with "gcc-5-branch" calls __cilkrts_save_fp_ctrl_state, whereas the binary compiled with "gcc-cilkplus" does not.&lt;/P&gt;

&lt;P&gt;3. After dead-coding sysdep_save_fp_ctrl_state/restore_x86_fp_state for "gcc-5-branch", the program runs fine (Eric, could you please check if you can reproduce this?)&lt;/P&gt;

&lt;P&gt;My impression is that those (save/restore) functions may need some modification for the flag if possible (Jim's last thought/suggestion).&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2015 15:35:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015481#M35896</guid>
      <dc:creator>Hansang_B_Intel</dc:creator>
      <dc:date>2015-05-29T15:35:28Z</dc:date>
    </item>
    <item>
      <title>Woohoo!  That worked.  I</title>
      <link>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015482#M35897</link>
      <description>&lt;P&gt;Woohoo!&amp;nbsp; That worked.&amp;nbsp; I commented out the define RESTORE_X86_FP_STATE at the top of libcilkrts/runtime/config/x86/os-unix-sysdep.c to obtain the following&lt;/P&gt;

&lt;PRE class="brush:plain;"&gt;// On x86 processors (but not MIC processors), the compiler generated code to
// save the FP state (rounding mode and the like) before calling setjmp.  We
// will need to restore that state when we resume.
#ifndef __MIC__
# if defined(__i386__) || defined(__x86_64)
//#   define RESTORE_X86_FP_STATE
# endif // defined(__i386__) || defined(__x86_64)
#endif  // __MIC__&lt;/PRE&gt;

&lt;P&gt;Recompiling the run-time library and installing yields a compiler that works for the test case as well as real code.&amp;nbsp; This message is to confirm the fix.&amp;nbsp; Are there any obvious side effects to this patch that I need to consider?&amp;nbsp; If I don't explicitly fiddle with the FPU using the functions in fenv.h, is it reasonable to assume everything will be okay?&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2015 16:19:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015482#M35897</guid>
      <dc:creator>Eric_O_</dc:creator>
      <dc:date>2015-05-29T16:19:00Z</dc:date>
    </item>
    <item>
      <title>This email is to confirm that</title>
      <link>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015483#M35898</link>
      <description>&lt;P&gt;This message is to confirm that floating point now works on 32-bit Intel with this patch as well.&amp;nbsp; Thanks for the help.&amp;nbsp; Is there anything more that needs to be done to ensure appropriate patches make it into gcc and the run-time library?&lt;/P&gt;</description>
      <pubDate>Sat, 30 May 2015 06:18:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015483#M35898</guid>
      <dc:creator>Eric_O_</dc:creator>
      <dc:date>2015-05-30T06:18:00Z</dc:date>
    </item>
    <item>
      <title>I might be remembering the</title>
      <link>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015484#M35899</link>
      <description>&lt;P&gt;I might be remembering the history incorrectly, but I think those particular save/restore functions were added relatively late in the development, in response to a bug in code that actually did care about using different floating-point rounding modes. &amp;nbsp; So&amp;nbsp;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;commenting out the restore function might break code that actually does change the floating point round mode? &amp;nbsp;For example, if you had changed the rounding mode at the beginning of main, and then expected g to also use the changed rounding mode, then the restore function would change the rounding mode properly if g gets stolen and executed on a different worker. &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;But that use case was probably rare and subtle enough that it took a while for anyone to notice it, since I think most users don't change the defaults. &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Perhaps that fix actually introduced a different bug, i.e., the one you are seeing now?&lt;/SPAN&gt;&lt;BR /&gt;
	&lt;BR /&gt;
	&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Anyway, I believe Hansang and others are taking a closer look at this issue. &amp;nbsp; If you don't explicitly change the FPU modes, etc., I think that the workaround you have should be ok? &amp;nbsp; But they will be able to provide more definitive answers than I can.&lt;/SPAN&gt;&lt;BR /&gt;
	&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Jim&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 31 May 2015 16:11:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015484#M35899</guid>
      <dc:creator>Jim_S_Intel</dc:creator>
      <dc:date>2015-05-31T16:11:24Z</dc:date>
    </item>
    <item>
      <title>Jim's memory is correct. The</title>
      <link>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015485#M35900</link>
      <description>&lt;P&gt;Jim's memory is correct. The Cilk Plus runtime saves the floating point state (including the floating point rounding mode) at each spawn and restores it on a steal using these functions. We didn't consider any floating point mode other than using the SSE instructions. I'm not sure how we could handle x87 mode.&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp;- Barry (who implemented the change)&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jun 2015 14:03:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015485#M35900</guid>
      <dc:creator>Barry_T_Intel</dc:creator>
      <dc:date>2015-06-01T14:03:02Z</dc:date>
    </item>
    <item>
      <title>The bug in which floating</title>
      <link>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015486#M35901</link>
      <description>&lt;P&gt;The Cilkplus floating-point exception bug is still present in gcc-5.2.&amp;nbsp; In particular, gcc with Cilkplus extensions still gives a floating point exception on 32-bit Intel architectures and 64-bit Intel with -mfpmath=387.&amp;nbsp; The fix of commenting out RESTORE_X86_FP_STATE at the top of libcilkrts/runtime/config/x86/os-unix-sysdep.c still solves this problem.&amp;nbsp; Unless a better solution is found, I would suggest implementing this known fix in mainline.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Aug 2015 23:20:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015486#M35901</guid>
      <dc:creator>Eric_O_</dc:creator>
      <dc:date>2015-08-14T23:20:00Z</dc:date>
    </item>
    <item>
      <title>Quote:Eric O. wrote:</title>
      <link>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015487#M35902</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Eric O. wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;The Cilkplus floating-point exception bug is still present in gcc-5.2.&amp;nbsp; In particular, gcc with Cilkplus extensions still gives a floating point exception on 32-bit Intel architectures and 64-bit Intel with -mfpmath=387.&amp;nbsp; The fix of commenting out RESTORE_X86_FP_STATE at the top of libcilkrts/runtime/config/x86/os-unix-sysdep.c still solves this problem.&amp;nbsp; Unless a better solution is found, I would suggest implementing this known fix in mainline.&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Don't worry about this bug since there is a better fix for it. It was an incorrect use of instruction when saving FP state (fnstsw -&amp;gt; fnstcw).&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Aug 2015 13:57:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/gcc-5-1-mfpmath-387-Floating-point-exception/m-p/1015487#M35902</guid>
      <dc:creator>Hansang_B_Intel</dc:creator>
      <dc:date>2015-08-17T13:57:07Z</dc:date>
    </item>
  </channel>
</rss>

