resolve.c (get_temp_from_expr): Change mangling to start always with a _.
2013-05-22 Tobias Burnus <burnus@net-b.de> * resolve.c (get_temp_from_expr): Change mangling to start always with a _. From-SVN: r199215
This commit is contained in:
parent
ead3d0757a
commit
bbf38bcf2d
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2013-05-22 Tobias Burnus <burnus@net-b.de>
|
||||
|
||||
* resolve.c (get_temp_from_expr): Change mangling to
|
||||
start always with a _.
|
||||
|
||||
2013-05-22 Tobias Burnus <burnus@net-b.de>
|
||||
|
||||
* resolve.c (get_temp_from_expr): Fix temp var mangling.
|
||||
|
|
|
@ -9254,7 +9254,7 @@ get_temp_from_expr (gfc_expr *e, gfc_namespace *ns)
|
|||
gfc_array_ref *aref;
|
||||
gfc_ref *ref;
|
||||
|
||||
sprintf (name, "DA" GFC_PREFIX("%d"), serial++);
|
||||
sprintf (name, GFC_PREFIX("DA%d"), serial++);
|
||||
gfc_get_sym_tree (name, ns, &tmp, false);
|
||||
gfc_add_type (tmp->n.sym, &e->ts, NULL);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue