Skip to content

Commit

Permalink
Attempt to fix the duplicate definition in the DMD backend
Browse files Browse the repository at this point in the history
  • Loading branch information
wilzbach committed Jan 2, 2018
1 parent 8ad8c02 commit 9e1e7b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dmd/backend/el.d
Expand Up @@ -153,7 +153,7 @@ elem *el_alloctmp(tym_t);
elem *el_selecte1(elem *);
elem *el_selecte2(elem *);
elem *el_copytree(elem *);
void el_replace_sym(elem *e,Symbol *s1,Symbol *s2);
void el_replace_sym(elem *e,Symbol *s1,Symbol *s2);
elem *el_scancommas(elem *);
int el_countCommas(elem *);
int el_sideeffect(elem *);
Expand Down Expand Up @@ -185,7 +185,7 @@ elem *el_var(Symbol *);
elem *el_settype(elem *,type *);
elem *el_typesize(type *);
elem *el_ptr(Symbol *);
void el_replace_sym(elem *e,Symbol *s1,Symbol *s2);
//void el_replace_sym(elem *e,Symbol *s1,Symbol *s2);
elem *el_ptr_offset(Symbol *s,targ_size_t offset);
void el_replacesym(elem *,Symbol *,Symbol *);
elem *el_nelems(type *);
Expand Down

0 comments on commit 9e1e7b4

Please sign in to comment.