File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments