[Issue 10575] struct and alloca cause internal error
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Tue Aug 20 07:40:26 PDT 2013
http://d.puremagic.com/issues/show_bug.cgi?id=10575
yebblies <yebblies at gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |ice
CC| |yebblies at gmail.com
--- Comment #1 from yebblies <yebblies at gmail.com> 2013-08-21 00:40:24 EST ---
For small test cases, please paste inline instead of attaching.
import core.stdc.stdlib;
struct TheStruct
{
~this()
{
}
}
void bar()
{
}
void main()
{
auto s = TheStruct();
bar();
auto a = alloca(16);
}
I can't reproduce on win32, but that is not a surprise as eh.c is posix-only.
--
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