IBM Support

IV33974: 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

    IV33974

  • Reported component name

    XL FORTRAN AIX

  • Reported component ID

    5724U8200

  • Reported release

    C10

  • Status

    CLOSED PER

  • PE

    NoPE

  • HIPER

    NoHIPER

  • Special Attention

    NoSpecatt

  • Submitted date

    2012-12-24

  • Closed date

    2012-12-24

  • Last modified date

    2012-12-24

  • 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 AIX

  • Fixed component ID

    5724U8200

Applicable component levels

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

Document Information

Modified date:
24 February 2022