- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
[bash]$ ifort --version ifort (IFORT) 12.1.4 20120410 Copyright (C) 1985-2012 Intel Corporation. All rights reserved. $ ifort -c ice.f90 ice.f90(12): error #8213: A keyword in the structure constructor is not the name of a type component. [FOO] img = image(foo=[1,2,3]) ----------------^ ice.f90: catastrophic error: **Internal compiler error: segmentation violation signal raised** Please report this error along with the circumstances in which it occurred in a Software Problem Report. Note: File and line given may not be explicit cause of this error. compilation aborted for ice.f90 (code 1)[/bash] Here is the source:[fortran]module images type image integer :: ldim(3) = [1,1,1] real, allocatable :: val(:) end type end module images program images_test use images implicit none type(image) :: img img = image(foo=[1,2,3]) end program images_test[/fortran]
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Regards,
Annalee
Intel Developer Support
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Regards,
Annalee
Intel Developer Support
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This bug was fixed in the recent Composer XE 2013 SP1 release, released in early September ( version 14.0 of the compiler )
ron

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page