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

Commit cd0806a

Browse files
authored
Merge pull request #3817 from MartinNowak/merge_stable
merge stable
2 parents 2dede46 + 213b77d commit cd0806a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/core/simd.d

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -502,13 +502,15 @@ version (D_SIMD)
502502
/*****
503503
* For "store" operations of the form:
504504
* op1 op= op2
505+
* such as MOVLPS.
505506
* Returns:
506507
* op2
507508
* These cannot be marked as pure, as semantic() doesn't check them.
508509
*/
509510
@safe void16 __simd_sto(XMM opcode, void16 op1, void16 op2);
510511
@safe void16 __simd_sto(XMM opcode, double op1, void16 op2); ///
511512
@safe void16 __simd_sto(XMM opcode, float op1, void16 op2); ///
513+
@safe void16 __simd_sto(XMM opcode, void16 op1, long op2); ///
512514

513515
///
514516
unittest

src/rt/sections_solaris.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ struct SectionGroup
5959
return pbeg[0 .. pend - pbeg];
6060
}
6161

62-
@property inout(void[])[] gcRanges() inout nothrow @nogc
62+
@property inout(void[])[] gcRanges() inout return nothrow @nogc
6363
{
6464
return _gcRanges[];
6565
}

0 commit comments

Comments
 (0)