Update dependencies from https://github.com/dotnet/core-setup build 20190329.11 ...
authorJan Kotas <jkotas@microsoft.com>
Sat, 30 Mar 2019 15:03:14 +0000 (08:03 -0700)
committerGitHub <noreply@github.com>
Sat, 30 Mar 2019 15:03:14 +0000 (08:03 -0700)
- Microsoft.NETCore.App - 3.0.0-preview4-27529-11

eng/Version.Details.xml
global.json
src/jit/hwintrinsicArm64.cpp

index 8c81343..0620eac 100644 (file)
@@ -3,13 +3,13 @@
   <ProductDependencies>
   </ProductDependencies>
   <ToolsetDependencies>
-    <Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.19179.1">
+    <Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.19179.2">
       <Uri>https://github.com/dotnet/arcade</Uri>
-      <Sha>ef139c7533e2e33c5e0946b80cb1aa95d84da868</Sha>
+      <Sha>31abd61b43b115a6af83c92ce35ed4e8efd01dfd</Sha>
     </Dependency>
-    <Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="2.0.0-beta.19179.1">
+    <Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="2.0.0-beta.19179.2">
       <Uri>https://github.com/dotnet/arcade</Uri>
-      <Sha>ef139c7533e2e33c5e0946b80cb1aa95d84da868</Sha>
+      <Sha>31abd61b43b115a6af83c92ce35ed4e8efd01dfd</Sha>
     </Dependency>
     <Dependency Name="Microsoft.Private.CoreFx.NETCoreApp" Version="4.6.0-preview4.19178.7">
       <Uri>https://github.com/dotnet/corefx</Uri>
index 86605fa..a9a3ee5 100644 (file)
@@ -7,7 +7,7 @@
     "python": "2.7.15"
   },
   "msbuild-sdks": {
-    "Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.19179.1",
-    "Microsoft.DotNet.Helix.Sdk": "2.0.0-beta.19179.1"
+    "Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.19179.2",
+    "Microsoft.DotNet.Helix.Sdk": "2.0.0-beta.19179.2"
   }
 }
index 47a2b56..602dec1 100644 (file)
@@ -157,6 +157,8 @@ bool HWIntrinsicInfo::isFullyImplementedIsa(InstructionSet isa)
         case InstructionSet_Simd:
         case InstructionSet_Sha1:
         case InstructionSet_Sha256:
+        case InstructionSet_Vector64:
+        case InstructionSet_Vector128:
             return true;
 
         default:
@@ -185,6 +187,8 @@ bool HWIntrinsicInfo::isScalarIsa(InstructionSet isa)
         case InstructionSet_Simd:
         case InstructionSet_Sha1:
         case InstructionSet_Sha256:
+        case InstructionSet_Vector64:
+        case InstructionSet_Vector128:
             return false;
 
         default: