From 69e114c1abf91241a0eeecf1ecceab4711b8aa62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Rylek?= Date: Tue, 8 Dec 2020 03:19:44 +0100 Subject: December infra rollout - remove duplicated 'src' from coreclr subrepo (src/coreclr/src becomes src/coreclr) (#44973) * Move src/coreclr/src/Directory.Build.targets to src/coreclr Merge src/coreclr/src/CMakeLists.txt into src/coreclr/CMakeLists.txt * Mechanical move of src/coreclr/src to src/coreclr * Scripts adjustments to reflect the changed paths --- src/coreclr/jit/smopenum.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/coreclr/jit/smopenum.h (limited to 'src/coreclr/jit/smopenum.h') diff --git a/src/coreclr/jit/smopenum.h b/src/coreclr/jit/smopenum.h new file mode 100644 index 00000000000..dc1fd6a8103 --- /dev/null +++ b/src/coreclr/jit/smopenum.h @@ -0,0 +1,16 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +#ifndef __smopenum_h__ +#define __smopenum_h__ + +typedef enum smopcode_t { +#define SMOPDEF(smname, string) smname, +#include "smopcode.def" +#undef SMOPDEF + + SM_COUNT, /* number of state machine opcodes */ + +} SM_OPCODE; + +#endif /* __smopenum_h__ */ -- cgit v1.2.3