Skip to content

Commit

Permalink
Applying formatting patch
Browse files Browse the repository at this point in the history
  • Loading branch information
tannergooding committed Jun 1, 2021
1 parent 90ded5b commit a3db54f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/coreclr/jit/gentree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21227,7 +21227,7 @@ GenTree* Compiler::gtNewSimdZeroNode(var_types type,
#if defined(TARGET_XARCH)
intrinsic = (simdSize == 32) ? NI_Vector256_get_Zero : NI_Vector128_get_Zero;
#elif defined(TARGET_ARM64)
intrinsic = (simdSize == 16) ? NI_Vector128_get_Zero : NI_Vector64_get_Zero;
intrinsic = (simdSize == 16) ? NI_Vector128_get_Zero : NI_Vector64_get_Zero;
#else
#error Unsupported platform
#endif // !TARGET_XARCH && !TARGET_ARM64
Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/jit/hwintrinsicarm64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ GenTree* Compiler::impSpecialIntrinsic(NamedIntrinsic intrinsic,
case NI_Vector128_get_Zero:
{
assert(sig->numArgs == 0);
retNode = gtNewSIMDVectorZero(retType, simdBaseJitType, simdSize);
retNode = gtNewSimdZeroNode(retType, simdBaseJitType, simdSize, /* isSimdAsHWIntrinsic */ false);
break;
}

Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/jit/hwintrinsicxarch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1038,7 +1038,7 @@ GenTree* Compiler::impBaseIntrinsic(NamedIntrinsic intrinsic,
case NI_Vector256_get_Zero:
{
assert(sig->numArgs == 0);
retNode = gtNewSIMDVectorZero(retType, simdBaseJitType, simdSize);
retNode = gtNewSimdZeroNode(retType, simdBaseJitType, simdSize, /* isSimdAsHWIntrinsic */ false);
break;
}

Expand Down

0 comments on commit a3db54f

Please sign in to comment.