search for: int_info

Displaying 1 result from an estimated 1 matches for "int_info".

Did you mean: intr_info
2006 Sep 05
2
[LLVMdev] gfortran: array constructor problems
...882f0 in llvm_emit_code_for_current_function (fndecl=0x45e4ae00) at ../../src/gcc/llvm-backend.cpp:309 It is compiling libgfortran/intrinsics/selected_int_kind.f90, which has only one array constructor, shown below. (this part is actually generated at build time as selected_int_kind.inc) type :: int_info integer :: kind integer :: range end type int_info integer, parameter :: c = 4 type (int_info), parameter :: int_infos(c) = (/ & int_info (1, range(0_1)), & int_info (2, range(0_2)), & int_info (4, range(0_4)), & int_info (8, range(0_8)) /) This is try...