[Issue 6817] New: [CTFE] Error on interpreting inlined IfStatement
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Sun Oct 16 03:56:12 PDT 2011
http://d.puremagic.com/issues/show_bug.cgi?id=6817
Summary: [CTFE] Error on interpreting inlined IfStatement
Product: D
Version: D2
Platform: Other
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: nobody at puremagic.com
ReportedBy: dawg at dawgfoto.de
--- Comment #0 from dawg at dawgfoto.de 2011-10-16 03:55:16 PDT ---
struct S
{
int bug()
{
bool b;
void toggle()
{
if (b)
b = false;
}
void trigger()
{
toggle();
}
trigger();
return 0;
}
}
enum interpret = S().bug();
----
When compiling with -inline this gives the following error.
bug.d(9): Error: integral constant must be scalar type, not void.
This happens because the IfStatement gets rewritten to an
AndAndExp during inlining. The AndAndExp is given the type void
which seems reasonable as it is a statement.
Later during interpretation the condition evaluates to true and
an IntegerExp with AndAndExp's type (void) is created, which causes the error.
I can't think of any && expression that doesn't have a bool result,
so using bool for the Integer could be a fix.
One thing that seems a little strange is that it is
the interpretation that actually triggers inlining (through calling semantic3
on the nested function). This inverts the usual order and could possibly
expose more bugs.
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list