Skip to content

Commit 0194525

Browse files
authored
no XMM code yet (#22020)
1 parent 4ce3087 commit 0194525

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compiler/src/dmd/backend/arm/cod1.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2449,7 +2449,7 @@ void loaddata(ref CodeBuilder cdb, elem* e, ref regm_t outretregs)
24492449
flags |= 2;
24502450
if (sz == 8)
24512451
flags |= 64;
2452-
if (isXMMreg(reg))
2452+
if (0 && isXMMreg(reg))
24532453
{
24542454
movxmmconst(cdb, reg, tym, &e.EV, 0);
24552455
flags = 0;

compiler/src/dmd/backend/codebuilder.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ struct CodeBuilder
3535
code** pTail;
3636

3737
enum BADINS = 0x1234_5678;
38-
//enum BADINS = 0x00_00_00_85;
38+
//enum BADINS = 0x00_66_0F_6E;
3939

4040
nothrow:
4141
public:

0 commit comments

Comments
 (0)