This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
On Sep 24, 2004, at 5:58 PM, Dale Johannesen wrote:I'm tracking down a crash I'm getting locally. It's not clear yet this is connected,
but I see a tree of this form in the Gimple and SSA dumps:
*pTmp4<D6472> = __NAGf90_dcdivdc (*pTmp2<D6470>, *pTmp3<D6471>);
The Gimple doc does not allow a pointer deref in a function argument. Is is supposed to?
It says CALL_EXPR arguments are valid LHS. So it allows. I am reading comment at the beginning of tree-gimple.c
call-stmt: CALL_EXPR
op0 -> _DECL | '&' _DECL
op1 -> arglist
arglist:
NULL_TREE
| TREE_LIST
op0 -> val
op1 -> arglist
val : _DECL | CONST| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |