Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1148)

Unified Diff: src/trusted/validator/x86/decoder/gen/ncopcode_prefix_impl.h

Issue 625923004: Delete old x86 validator. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: rebase master Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/trusted/validator/x86/decoder/gen/ncopcode_prefix_impl.h
diff --git a/src/trusted/validator/x86/decoder/gen/ncopcode_prefix_impl.h b/src/trusted/validator/x86/decoder/gen/ncopcode_prefix_impl.h
deleted file mode 100644
index b92390ca5696f19dbfa6ea45476d585a25a69cb1..0000000000000000000000000000000000000000
--- a/src/trusted/validator/x86/decoder/gen/ncopcode_prefix_impl.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/* native_client/src/trusted/validator/x86/decoder/gen/ncopcode_prefix_impl.h
- * THIS FILE IS AUTO_GENERATED DO NOT EDIT.
- *
- * This file was auto-generated by enum_gen.py
- * from file ncopcode_prefix.enum
- */
-
-/* Define the corresponding names of NaClInstPrefix. */
-static const char* const g_NaClInstPrefixName[NaClInstPrefixEnumSize + 1] = {
- "NoPrefix",
- "Prefix0F",
- "PrefixF20F",
- "PrefixF30F",
- "Prefix660F",
- "Prefix0F0F",
- "Prefix0F38",
- "Prefix660F38",
- "PrefixF20F38",
- "Prefix0F3A",
- "Prefix660F3A",
- "PrefixD8",
- "PrefixD9",
- "PrefixDA",
- "PrefixDB",
- "PrefixDC",
- "PrefixDD",
- "PrefixDE",
- "PrefixDF",
- "NaClInstPrefixEnumSize"
-};
-
-const char* NaClInstPrefixName(NaClInstPrefix name) {
- return name <= NaClInstPrefixEnumSize
- ? g_NaClInstPrefixName[name]
- : "NaClInstPrefix???";
-}

Powered by Google App Engine
This is Rietveld 408576698