summaryrefslogtreecommitdiff
path: root/src/jit/smopenum.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/jit/smopenum.h')
-rw-r--r--src/jit/smopenum.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/jit/smopenum.h b/src/jit/smopenum.h
new file mode 100644
index 0000000000..978bbc2c3b
--- /dev/null
+++ b/src/jit/smopenum.h
@@ -0,0 +1,17 @@
+// 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.
+
+#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__ */