Merge changes from TFS (dotnet/coreclr#10926)
authordotnet bot <dotnet-bot@dotnetfoundation.org>
Wed, 12 Apr 2017 22:27:09 +0000 (15:27 -0700)
committerBruce Forstall <brucefo@microsoft.com>
Wed, 12 Apr 2017 22:27:09 +0000 (15:27 -0700)
* Fix desktop build break

[tfs-changeset: 1654125]

* JIT formatting

Commit migrated from https://github.com/dotnet/coreclr/commit/07606103cee92290abe7958502a70e01c0df4870

src/coreclr/src/jit/codegenarmarch.cpp
src/coreclr/src/jit/jit.settings.targets

index 8c06e5e..af9fdfe 100644 (file)
@@ -103,8 +103,8 @@ void CodeGen::genPutArgStk(GenTreePutArgStk* treeNode)
     // This is the varNum for our store operations,
     // typically this is the varNum for the Outgoing arg space
     // When we are generating a tail call it will be the varNum for arg0
-    unsigned varNumOut;
-    unsigned argOffsetMax; // Records the maximum size of this area for assert checks
+    unsigned varNumOut    = (unsigned)-1;
+    unsigned argOffsetMax = (unsigned)-1; // Records the maximum size of this area for assert checks
 
     // Get argument offset to use with 'varNumOut'
     // Here we cross check that argument offset hasn't changed from lowering to codegen since
index 8749b80..bde6395 100644 (file)
         <CppCompile Include="..\TargetArm.cpp" />
         <CppCompile Condition="'$(ClDefines.Contains(`LEGACY_BACKEND`))'=='True'" Include="..\registerfp.cpp" />
         <CppCompile Condition="'$(ClDefines.Contains(`LEGACY_BACKEND`))'=='False'"  Include="..\DecomposeLongs.cpp" />
+        <CppCompile Condition="'$(ClDefines.Contains(`LEGACY_BACKEND`))'=='False'"  Include="..\LowerArmArch.cpp" />
+        <CppCompile Condition="'$(ClDefines.Contains(`LEGACY_BACKEND`))'=='False'"  Include="..\lsraarmarch.cpp" />
+        <CppCompile Condition="'$(ClDefines.Contains(`LEGACY_BACKEND`))'=='False'"  Include="..\CodeGenArmArch.cpp" />
         <CppCompile Condition="'$(ClDefines.Contains(`LEGACY_BACKEND`))'=='False'"  Include="..\LowerArm.cpp" />
         <CppCompile Condition="'$(ClDefines.Contains(`LEGACY_BACKEND`))'=='False'"  Include="..\lsraarm.cpp" />
         <CppCompile Condition="'$(ClDefines.Contains(`LEGACY_BACKEND`))'=='False'"  Include="..\CodeGenArm.cpp" />
         <!-- ARM64 target is always RyuJIT backend -->
         <CppCompile Include="..\emitarm64.cpp" />
         <CppCompile Include="..\TargetArm64.cpp" />
+        <CppCompile Include="..\LowerArmArch.cpp" />
+        <CppCompile Include="..\lsraarmarch.cpp" />
+        <CppCompile Include="..\CodeGenArmArch.cpp" />
         <CppCompile Include="..\LowerArm64.cpp" />
         <CppCompile Include="..\lsraarm64.cpp" />
         <CppCompile Include="..\CodeGenArm64.cpp" />