diff options
author | Mike Danes <onemihaid@hotmail.com> | 2018-05-31 23:30:17 +0300 |
---|---|---|
committer | Mike Danes <onemihaid@hotmail.com> | 2018-08-02 19:31:49 +0300 |
commit | 02e0da129bb7369258ab1ed19815e18df87029d8 (patch) | |
tree | c65185a1d734d01157811b2f117ad5a5ac104e5b /src/jit | |
parent | 6e4218687b353c3fdf0f11bd0e1651e2754a2d75 (diff) | |
download | coreclr-02e0da129bb7369258ab1ed19815e18df87029d8.tar.gz coreclr-02e0da129bb7369258ab1ed19815e18df87029d8.tar.bz2 coreclr-02e0da129bb7369258ab1ed19815e18df87029d8.zip |
Get rid of x86_instrs.h
Diffstat (limited to 'src/jit')
-rw-r--r-- | src/jit/CMakeLists.txt | 1 | ||||
-rw-r--r-- | src/jit/instr.h | 3 | ||||
-rw-r--r-- | src/jit/x86_instrs.h | 10 |
3 files changed, 2 insertions, 12 deletions
diff --git a/src/jit/CMakeLists.txt b/src/jit/CMakeLists.txt index 2699b67b4c..81fd1226c4 100644 --- a/src/jit/CMakeLists.txt +++ b/src/jit/CMakeLists.txt @@ -185,7 +185,6 @@ if (WIN32) valuenumtype.h varset.h vartype.h - x86_instrs.h ) endif(WIN32) diff --git a/src/jit/instr.h b/src/jit/instr.h index c7be413d05..efa94123b0 100644 --- a/src/jit/instr.h +++ b/src/jit/instr.h @@ -33,7 +33,8 @@ enum instruction : unsigned #define INST8(id, nm, fp, ldst, fmt, e1, e2, e3, e4, e5, e6, e7, e8 ) INS_##id, #define INST9(id, nm, fp, ldst, fmt, e1, e2, e3, e4, e5, e6, e7, e8, e9) INS_##id, #include "instrs.h" - #include "x86_instrs.h" + + INS_lea, // Not a real instruction. It is used for load the address of stack locals #elif defined(_TARGET_ARM64_) #define INST1(id, nm, fp, ldst, fmt, e1 ) INS_##id, diff --git a/src/jit/x86_instrs.h b/src/jit/x86_instrs.h deleted file mode 100644 index 1c3489d3b4..0000000000 --- a/src/jit/x86_instrs.h +++ /dev/null @@ -1,10 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -// -// This is a temporary file which defined the x86 instructions that -// are currently still referenced when building the Arm Jit compiler -// - -INS_lea, |