<?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>Intel® Fortran Compiler의 주제 Re: porting ifort -&amp;gt; ifx: acess violation when returning a struct to c</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1741032#M178540</link>
    <description>&lt;P&gt;Thank you,&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/92920"&gt;@FortranFan&lt;/a&gt;&amp;nbsp;. I have escalated it to be fixed (CMPLRLLVM-74139).&lt;/P&gt;</description>
    <pubDate>Mon, 16 Mar 2026 15:11:26 GMT</pubDate>
    <dc:creator>Igor_V_Intel</dc:creator>
    <dc:date>2026-03-16T15:11:26Z</dc:date>
    <item>
      <title>porting ifort -&gt; ifx: acess violation when returning a struct to c</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1740398#M178481</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a c application that runs on both windows and linux. The application includes a number of fortran functions which are called from the c code. On windows (windows 11 24H2), we have been using ifort to compile the fortran code and msvc to compile the c code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The fortran functions return a struct that contain error information: a return code and a message.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When compiling the same code with ifx instead of ifort, my code fails with the following error:&lt;BR /&gt;&lt;SPAN&gt;forrtl: severe (157): Program Exception - access violation&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;I've been able to narrow it down to a minimal reproduceable error. If I define as a function with a return value (get_struct_byval), the memory address of the struct is different in fortran than it is in the calling c function. However, if I defined a subroutine which returns the struct as an intent(out) argument (get_struct_byref), the memory addresses are the same in both the c and fortran sides. See the attached files.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can see that the return is different for (get_struct_byval) when comparing the asm generated by ifort and ifx. ifort is correctly setting the address of the struct in RAX (which appears to be to be the expected behavior for the windows x64 ABI) while ifx is not.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could somebody who's more familiar with the language and ifx confirm whether I'm doing anything incorrect in the attached code? Perhaps there's a compiler flag I'm missing? I'm not seeing anything obviously wrong about the code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The compiler versions are:&lt;/P&gt;&lt;P&gt;msvc: Microsoft (R) C/C++ Optimizing Compiler Version 19.50.35723 for x64&lt;BR /&gt;ifort: Intel(R) Fortran Intel(R) 64 Compiler Classic for applications running on Intel(R) 64, Version 2021.9.0 Build 20230302_000000&lt;BR /&gt;ifx: Intel(R) Fortran Compiler for applications running on Intel(R) 64, Version 2025.3.2 Build 20260112&lt;/P&gt;&lt;P&gt;all code is compiled with optimization O3 (although the same failure is seen at other optimization levels). Fortran standard 03 is used (again, same error is seen with newer standard versions).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2026 18:20:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1740398#M178481</guid>
      <dc:creator>james-thunes</dc:creator>
      <dc:date>2026-03-10T18:20:43Z</dc:date>
    </item>
    <item>
      <title>Re: porting ifort -&gt; ifx: acess violation when returning a struct to c</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1740399#M178482</link>
      <description>&lt;P&gt;The windows ABI is described on this page&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/cpp/build/x64-calling-convention?view=msvc-170#return-values" target="_self"&gt;x64 calling conventions&lt;/A&gt;. The relevant section:&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;User-defined types can be returned by value from global functions and static member functions. To return a user-defined type by value in RAX, it must have a length of 1, 2, 4, 8, 16, 32, or 64 bits. ...[snip]...&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;Otherwise, the caller must allocate memory for the return value and pass a pointer to it as the first argument. The remaining arguments are then shifted one argument to the right. The same pointer must be returned by the callee in RAX.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Specifically, in ifort, this is the return from the function:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;        mov       BYTE PTR [19+r14], 0                          ;39.9
        mov       rax, r14                                      ;40.3
        lea       rsp, QWORD PTR [112+rbp]                      ;40.3
        pop       r14                                           ;40.3
        pop       r13                                           ;40.3
        pop       rsi                                           ;40.3
        pop       rbx                                           ;40.3
        pop       rbp                                           ;40.3
        ret                                                     ;40.3&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;note that rax is set to r14 before the return (line 2).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;While in ifx:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;	movups	%xmm0, 4(%rsi)
	.seh_startepilogue
	addq	$136, %rsp
	popq	%rbx
	popq	%rdi
	popq	%rsi
	popq	%r14
	.seh_endepilogue
	retq&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;note that there's no equivalent mov call.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2026 18:32:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1740399#M178482</guid>
      <dc:creator>james-thunes</dc:creator>
      <dc:date>2026-03-10T18:32:51Z</dc:date>
    </item>
    <item>
      <title>Re: porting ifort -&gt; ifx: acess violation when returning a struct to c</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1740419#M178484</link>
      <description>&lt;P&gt;apologies, the memory location are a red herring. However the difference in the generated assembly is still relevant I think. The resultant code does return the expected data and run without error when compiled with ifort while it crashes with ifx.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2026 21:59:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1740419#M178484</guid>
      <dc:creator>james-thunes</dc:creator>
      <dc:date>2026-03-10T21:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: porting ifort -&gt; ifx: acess violation when returning a struct to c</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1740517#M178491</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/41896"&gt;@Igor_V_Intel&lt;/a&gt;&amp;nbsp;, this looks like a bug in IFX.&amp;nbsp; May you please quickly review this with Intel Fortran team?&lt;/P&gt;&lt;P&gt;A colleague pointed me to this thread for they are seeing an issue in their code for which they haven't reduced to reproducer but the characteristics are similar to this case by&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/75709"&gt;@James_Thunes&lt;/a&gt;&amp;nbsp;about a function result that is a derived type with bind(C) attribute.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2026 17:29:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1740517#M178491</guid>
      <dc:creator>FortranFan</dc:creator>
      <dc:date>2026-03-11T17:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: porting ifort -&gt; ifx: acess violation when returning a struct to c</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1740520#M178492</link>
      <description>&lt;P&gt;Glad to hear I'm not the only one &lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/92920"&gt;@FortranFan&lt;/a&gt;. My default reaction to these things is always that I'm making a mistake, but I'm tentatively leaning towards a ifx bug as well. I'd be very happy to hear that it's on my end though.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do have a workaround (pass the object as an intent(out) argument) but that does require modification to the code. A solution that doesn't require code changes would be preferable.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2026 17:36:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1740520#M178492</guid>
      <dc:creator>james-thunes</dc:creator>
      <dc:date>2026-03-11T17:36:39Z</dc:date>
    </item>
    <item>
      <title>Re: porting ifort -&gt; ifx: acess violation when returning a struct to c</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1740542#M178499</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/41896"&gt;@Igor_V_Intel&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;For whatever it's worth, the behavior using gfortran and IFORT is as expected.&lt;/P&gt;&lt;P&gt;Intel Fortran team may also consider an added reproducer in this review:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;C main, say file c.c&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="cpp"&gt;#include &amp;lt;stdint.h&amp;gt;
#include &amp;lt;stdio.h&amp;gt;

enum { N = 256 };

typedef struct _foo_t {
   int32_t i;
   char s[N];
} foo_t;

foo_t f();

void main() {
   foo_t x;
   x = f();
   printf("C main: x.i = %d; x.s = %s\n", x.i, x.s);
   return;
}&lt;/LI-CODE&gt;&lt;UL&gt;&lt;LI&gt;Fortran module, say m.f&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="fortran"&gt;module m
   use, intrinsic :: iso_c_binding, only : c_int32_t, c_char, c_f_pointer, c_loc, c_null_char
   enum, bind(C)
      enumerator :: N = 256
   end enum
   type, bind(C) :: foo_t
      integer(c_int32_t) :: i
      character(kind=c_char, len=1) :: s(N)
   end type
contains
   function f() result(r) bind(C, name="f")
      ! Function result
      type(foo_t), target :: r
      r%i = 42
      block
         character(kind=c_char, len=N), pointer :: s
         call c_f_pointer( cptr=c_loc(r%s), fptr=s )
         s = repeat( c_char_" ", ncopies=N )
         s = c_char_"Hello World!" // c_null_char
         s =&amp;gt; null()
      end block
      return
   end function f
end module&lt;/LI-CODE&gt;&lt;UL&gt;&lt;LI&gt;gfortran response with GCC as the companion C processor&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="none"&gt;C:\Temp&amp;gt;c:\gcc\bin\gcc -c c.c

C:\Temp&amp;gt;c:\gcc\bin\gfortran -c -ffree-form m.f

C:\Temp&amp;gt;c:\gcc\bin\gfortran c.o m.o -o c.exe

C:\Temp&amp;gt;c.exe
C main: x.i = 42; x.s = Hello World!

C:\Temp&amp;gt;&lt;/LI-CODE&gt;&lt;UL&gt;&lt;LI&gt;IFX response with Microsoft C/C++ as the companion C processor&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="none"&gt;C:\Temp&amp;gt;cl /c /W3 /EHsc c.c
Microsoft (R) C/C++ Optimizing Compiler Version 19.50.35721 for x64
Copyright (C) Microsoft Corporation.  All rights reserved.

c.c

C:\Temp&amp;gt;ifx /c /free /standard-semantics m.f
Intel(R) Fortran Compiler for applications running on Intel(R) 64, Version 2025.3.2 Build 20260112
Copyright (C) 1985-2026 Intel Corporation. All rights reserved.


C:\Temp&amp;gt;link c.obj m.obj /subsystem:console /out:c.exe
Microsoft (R) Incremental Linker Version 14.50.35721.0
Copyright (C) Microsoft Corporation.  All rights reserved.


C:\Temp&amp;gt;c.exe
C main: x.i = 1819043144; x.s = o World!

C:\Temp&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;Intel team may try this example with the value of enum set to 3.&amp;nbsp; Please look into struct data alignment and bind(C) considerations.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2026 21:45:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1740542#M178499</guid>
      <dc:creator>FortranFan</dc:creator>
      <dc:date>2026-03-11T21:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: porting ifort -&gt; ifx: acess violation when returning a struct to c</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1740829#M178518</link>
      <description>&lt;P&gt;Thank you.&amp;nbsp; I am not sure that this code is standard conforming, e.g.&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;character(kind=c_char, len=N), pointer :: s&lt;/LI-CODE&gt;
&lt;P&gt;The rule for&amp;nbsp;c_f_pointer is that the Fortran target must be an interoperable data entity. I guess that in this case it is not an interoperable&amp;nbsp; unless N=1. However, I believe there is a bug in the ifx after making this example conform to the standard.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Mar 2026 23:29:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1740829#M178518</guid>
      <dc:creator>Igor_V_Intel</dc:creator>
      <dc:date>2026-03-13T23:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: porting ifort -&gt; ifx: acess violation when returning a struct to c</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1740832#M178519</link>
      <description>&lt;P&gt;I think that you are correct that "only character variables with a length of one (1) are interoperable". That makes sense from the C perspective, as the character array (pointer to an array of characters) needs a spot for the null character at the end. Hence it has a length of 1 when it is created. I'm not very clued up on all of this, but am finding the discussion interesting as it relates to calling/using C libraries from Fortran.&lt;/P&gt;</description>
      <pubDate>Sat, 14 Mar 2026 03:39:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1740832#M178519</guid>
      <dc:creator>witwald</dc:creator>
      <dc:date>2026-03-14T03:39:07Z</dc:date>
    </item>
    <item>
      <title>Re: porting ifort -&gt; ifx: acess violation when returning a struct to c</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1740851#M178520</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/41896"&gt;@Igor_V_Intel&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Thank you.&amp;nbsp; I am not sure that this code is standard conforming, e.g.&amp;nbsp;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;LI-CODE lang="markup"&gt;character(kind=c_char, len=N), pointer :: s&lt;/LI-CODE&gt;&lt;P&gt;The rule for&amp;nbsp;c_f_pointer is that the Fortran target must be an interoperable data entity. I guess that in this case it is not an interoperable&amp;nbsp; unless N=1. However, I believe there is a bug in the ifx after making this example conform to the standard.&lt;/P&gt;&lt;HR /&gt;&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/41896"&gt;@Igor_V_Intel&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;For the sake of the issue with IFX on hand, please ignore the above distraction.&amp;nbsp; Please consider the following variant with IFX review.&lt;/P&gt;&lt;LI-CODE lang="fortran"&gt;module m
   use, intrinsic :: iso_c_binding, only : c_int32_t, c_char, c_f_pointer, c_loc, c_null_char
   enum, bind(C)
      enumerator :: N = 256
   end enum
   type, bind(C) :: foo_t
      integer(c_int32_t) :: i
      character(kind=c_char, len=1) :: s(N)
   end type
contains
   function f() result(r) bind(C, name="f")
      ! Function result
      type(foo_t), target :: r
      ! Local entities
      integer :: i
      character(kind=c_char, len=*), parameter :: s = c_char_"Hello World!" // c_null_char
      r%i = 42
      r%s = repeat( c_char_" ", ncopies=N )
      do i = 1, len(s)
         r%s(i) = s(i:i)
      end do
      return
   end function f
end module&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 14 Mar 2026 14:12:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1740851#M178520</guid>
      <dc:creator>FortranFan</dc:creator>
      <dc:date>2026-03-14T14:12:33Z</dc:date>
    </item>
    <item>
      <title>Re: porting ifort -&gt; ifx: acess violation when returning a struct to c</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1740872#M178522</link>
      <description>&lt;P&gt;The language has a carve-out for passing character values with length greater than 1 to character array dummy arguments.&lt;/P&gt;&lt;P&gt;"Fortran’s rules of sequence association (15.5.2.12) permit a character scalar actual argument to correspond to&lt;BR /&gt;a dummy argument array. This makes it possible to argument associate a Fortran character string with a C&lt;BR /&gt;string."&lt;/P&gt;</description>
      <pubDate>Sat, 14 Mar 2026 23:49:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1740872#M178522</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2026-03-14T23:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: porting ifort -&gt; ifx: acess violation when returning a struct to c</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1741025#M178538</link>
      <description>&lt;P&gt;Yes, the above is a more concise representation of the problem I believe. Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2026 13:57:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1741025#M178538</guid>
      <dc:creator>james-thunes</dc:creator>
      <dc:date>2026-03-16T13:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: porting ifort -&gt; ifx: acess violation when returning a struct to c</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1741028#M178539</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/5442"&gt;@Steve_Lionel&lt;/a&gt;&amp;nbsp;good to know. Dealing with character arrays in c is always a minefield. Glad that there's some guidance on how to do so in the fortran standard.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is, however, perhaps a little orthogonal to my actual issue. The use of a string in the object I'm returning from the function was in retrospect a bad choice. It was done since it was representative of the simplest use-case that was failing in my ported code, but the same result can be seen with other objects as well. Of note is that the opposite case, passing the same data from c to fortran, does not exhibit the same behavior.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2026 14:08:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1741028#M178539</guid>
      <dc:creator>james-thunes</dc:creator>
      <dc:date>2026-03-16T14:08:01Z</dc:date>
    </item>
    <item>
      <title>Re: porting ifort -&gt; ifx: acess violation when returning a struct to c</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1741032#M178540</link>
      <description>&lt;P&gt;Thank you,&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/92920"&gt;@FortranFan&lt;/a&gt;&amp;nbsp;. I have escalated it to be fixed (CMPLRLLVM-74139).&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2026 15:11:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1741032#M178540</guid>
      <dc:creator>Igor_V_Intel</dc:creator>
      <dc:date>2026-03-16T15:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: porting ifort -&gt; ifx: acess violation when returning a struct to c</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1741062#M178547</link>
      <description>&lt;P&gt;thanks&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/41896"&gt;@Igor_V_Intel&lt;/a&gt;. Is the above bug (&lt;SPAN&gt;CMPLRLLVM-74139&lt;/SPAN&gt;) publicly available so I can track its progress?&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2026 18:02:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1741062#M178547</guid>
      <dc:creator>james-thunes</dc:creator>
      <dc:date>2026-03-16T18:02:18Z</dc:date>
    </item>
    <item>
      <title>Re: porting ifort -&gt; ifx: acess violation when returning a struct to c</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1741071#M178548</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/375033"&gt;@james-thunes&lt;/a&gt;&amp;nbsp;. Unfortunately not. It is more for your reference if you contact Intel support to ask for an update. I will notify you and the community here once the bug is fixed.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2026 18:44:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1741071#M178548</guid>
      <dc:creator>Igor_V_Intel</dc:creator>
      <dc:date>2026-03-16T18:44:03Z</dc:date>
    </item>
    <item>
      <title>Re: porting ifort -&gt; ifx: acess violation when returning a struct to c</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1741073#M178549</link>
      <description>&lt;P&gt;Not a problem. That'll be sufficient for my purposes.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2026 18:48:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/porting-ifort-gt-ifx-acess-violation-when-returning-a-struct-to/m-p/1741073#M178549</guid>
      <dc:creator>james-thunes</dc:creator>
      <dc:date>2026-03-16T18:48:26Z</dc:date>
    </item>
  </channel>
</rss>

