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

Unified Diff: src/trusted/validator_ragel/one-instruction-x86_32.rl

Issue 9348082: Move unreviewed files to unreviewed subdirectory (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 8 years, 10 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
« no previous file with comments | « src/trusted/validator_ragel/nops.def ('k') | src/trusted/validator_ragel/one-instruction-x86_64.rl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/validator_ragel/one-instruction-x86_32.rl
===================================================================
--- src/trusted/validator_ragel/one-instruction-x86_32.rl (revision 7794)
+++ src/trusted/validator_ragel/one-instruction-x86_32.rl (working copy)
@@ -1,39 +0,0 @@
-/*
- * Copyright (c) 2011 The Native Client Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-%%{
- machine one_instruction_x86_32;
- alphtype unsigned char;
-
- # We need to know where DISP, IMM, and REL fields can be found
- action disp8_operand_begin { }
- action disp8_operand_end { }
- action disp32_operand_begin { }
- action disp32_operand_end { }
- action disp64_operand_begin { }
- action disp64_operand_end { }
-
- action imm8_operand_begin { }
- action imm8_operand_end { }
- action imm16_operand_begin { }
- action imm16_operand_end { }
- action imm32_operand_begin { }
- action imm32_operand_end { }
- action imm64_operand_begin { }
- action imm64_operand_end { }
-
- action rel8_operand_begin { }
- action rel8_operand_end { }
- action rel16_operand_begin { }
- action rel16_operand_end { }
- action rel32_operand_begin { }
- action rel32_operand_end { }
-
- include decode_x86_32 "one-valid-instruction-x86_32.rl";
-
- main := one_instruction;
-
-}%%
« no previous file with comments | « src/trusted/validator_ragel/nops.def ('k') | src/trusted/validator_ragel/one-instruction-x86_64.rl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698