Issue |
149321
|
Summary |
[flang] Coredump when `-fdefault-integer-8` AND `-fdefault-real-8` are specified
|
Labels |
flang:runtime
|
Assignees |
|
Reporter |
DanielCChen
|
Consider the following code
```
implicit none
interface
subroutine sub(n)
integer n
end subroutine
subroutine sub_ent()
end subroutine
end interface
call sub_ent()
end program
subroutine sub(xx)
implicit none
integer xx
integer a(xx)
real m, o
return
entry sub_ent()
m = o
return
end subroutine
```
Flang coredumps when both options are specified. If either option is removed, it works fine.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs