mirror of
https://github.com/odin-lang/Odin.git
synced 2026-06-06 10:44:06 +00:00
fix dropping part of particular vecs
This commit is contained in:
@@ -1028,7 +1028,7 @@ namespace lbAbiAmd64SysV {
|
||||
unify(cls, ix + off/8, RegClass_Int);
|
||||
break;
|
||||
case LLVMHalfTypeKind:
|
||||
unify(cls, ix + off/8, (off%8 == 6) ? RegClass_SSEHv : RegClass_SSEHs);
|
||||
unify(cls, ix + off/8, (off%8 != 0) ? RegClass_SSEHv : RegClass_SSEHs);
|
||||
break;
|
||||
case LLVMFloatTypeKind:
|
||||
unify(cls, ix + off/8, (off%8 == 4) ? RegClass_SSEFv : RegClass_SSEFs);
|
||||
|
||||
Reference in New Issue
Block a user