Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Conversation

MartinNowak
Copy link
Member

Pretty obvious fix but I still have a small regression test.
I Just don't know where to put it?


struct FourUShort {
this(ushort a, ushort b, ushort c, ushort d) {
this.a = a;
this.b = b;
this.c = c;
this.d = d;
}
ushort a, b, c, d;
}

void main()
{
auto f = FourUShort(0, 1, 2, 3);
assert(f.a == 0);
assert(f.b == 1);
assert(f.c == 2);
assert(f.d == 3);
}

braddr added a commit that referenced this pull request Aug 26, 2011
small fix for 64-Bit trace
@braddr braddr merged commit 3e6372c into dlang:master Aug 26, 2011
@braddr
Copy link
Member

braddr commented Aug 26, 2011

I'll add this to the dmd test suite. It's well equipped to run this sort of test and I don't think it's terribly egregious to use it to test low level druntime pieces through it.

redstar added a commit to redstar/druntime that referenced this pull request Feb 8, 2016
ARM AAPCS stdarg/vararg alignment
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants