summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Regression/JitBlue/GitHub_25020/GitHub_25020.csproj
diff options
context:
space:
mode:
authorJarret Shook <jashoo@microsoft.com>2019-07-18 21:07:08 -0700
committerKonstantin Baladurin <k.baladurin@samsung.com>2019-09-26 00:24:34 +0300
commit3c712b4edebc46b599319af234484477e5017514 (patch)
tree2bcf8480bfb7e9585c16af8becf68c0fd5a55c52 /tests/src/JIT/Regression/JitBlue/GitHub_25020/GitHub_25020.csproj
parentc3cf61b667daa58fbe8fc0a1ee1894c5b32c0221 (diff)
downloadcoreclr-3c712b4edebc46b599319af234484477e5017514.tar.gz
coreclr-3c712b4edebc46b599319af234484477e5017514.tar.bz2
coreclr-3c712b4edebc46b599319af234484477e5017514.zip
Fail to explicitly tail call on x86 unix. (#25032)
* Fail to explicitly tail call on x86 unix. * Correctly return 100 * Correct return value * Add noway assert in morphTailCall to avoid morphing slow tail calls on unix. * Address feedback
Diffstat (limited to 'tests/src/JIT/Regression/JitBlue/GitHub_25020/GitHub_25020.csproj')
-rw-r--r--tests/src/JIT/Regression/JitBlue/GitHub_25020/GitHub_25020.csproj17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/src/JIT/Regression/JitBlue/GitHub_25020/GitHub_25020.csproj b/tests/src/JIT/Regression/JitBlue/GitHub_25020/GitHub_25020.csproj
new file mode 100644
index 0000000000..c24f74b865
--- /dev/null
+++ b/tests/src/JIT/Regression/JitBlue/GitHub_25020/GitHub_25020.csproj
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <AssemblyName>$(MSBuildProjectName)</AssemblyName>
+ <OutputType>Exe</OutputType>
+ <DebugType></DebugType>
+ <Optimize>True</Optimize>
+ </PropertyGroup>
+ <ItemGroup>
+ <Compile Include="$(MSBuildProjectName).cs" />
+ </ItemGroup>
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
+ <PropertyGroup Condition=" '$(MsBuildProjectDirOverride)' != '' "></PropertyGroup>
+</Project>