IBM Support

LI77165: XLF ERROR IN SINGLECONVERSION

Subscribe

You can track all active APARs for this component.

 

APAR status

  • Closed as program error.

Error description

  • The following testcase fails to compile:
    
    
    % cat test.f90
    
         character(len=1) :: h(1:100) = (/ ( (' ',i=1,9), '|',
    j=1,10) /)
         print *, h
         stop
         end
    
    % bgxlf90 -o test test.f90
    "test.f90", line 1.46: 1517-005 (U) Error in SingleConversion.
    Please contact your Service Representative.  For more
    information visit:
    http://www.ibm.com/support/docview.wss?uid=swg21110810
    1501-511  Compilation failed for file test.f90.
    

Local fix

  • Workaround 1:
    
    
    Get rid of the nested ac-implied do.  i.e. change the code to
    the following:
    
         character(len=1) :: h(1:100) = ' '
         h(10:100:10) = '|'
    
    Workaround 2:
    
    Separate array construction from declaration.
    
         character(len=1) :: h(1:100)
         h = (/ ( (' ',i=1,9), '|', j=1,10) /)
         print *, h
         stop
    

Problem summary

  • Compilation may fail due to ICE when processing nested
    array-constructors in static initialization.
    

Problem conclusion

  • The problem had been fixed.
    

Temporary fix

Comments

APAR Information

  • APAR number

    LI77165

  • Reported component name

    XL FORTRAN LINU

  • Reported component ID

    5725C7500

  • Reported release

    E10

  • Status

    CLOSED PER

  • PE

    NoPE

  • HIPER

    NoHIPER

  • Special Attention

    NoSpecatt

  • Submitted date

    2012-12-17

  • Closed date

    2012-12-17

  • Last modified date

    2012-12-17

  • APAR is sysrouted FROM one or more of the following:

    LI77016

  • APAR is sysrouted TO one or more of the following:

Fix information

  • Fixed component name

    XL FORTRAN LINU

  • Fixed component ID

    5725C7500

Applicable component levels

[{"Business Unit":{"code":"BU058","label":"IBM Infrastructure w\/TPS"},"Product":{"code":"SSAT4T","label":"XL Fortran for Linux"},"Platform":[{"code":"PF025","label":"Platform Independent"}],"Version":"14.1","Line of Business":{"code":"LOB57","label":"Power"}}]

Document Information

Modified date:
14 October 2021