You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Flang does not accept input on stdin. It generates an error.
For e.g : flang -o - -S -x f95 - < ex.f90
F90-F-0000-Internal compiler error. Unknown command line argument: 0
function f(a)
real a
f = a*a
return
end
While the eqiuvalent clang command works fine and generates assembly.
For e.g : clang -o - -S -x c - < ex.c
float f(float a)
{
return a*a;
}
The text was updated successfully, but these errors were encountered:
Flang does not accept input on stdin. It generates an error.
For e.g : flang -o - -S -x f95 - < ex.f90
F90-F-0000-Internal compiler error. Unknown command line argument: 0
While the eqiuvalent clang command works fine and generates assembly.
For e.g : clang -o - -S -x c - < ex.c
The text was updated successfully, but these errors were encountered: