Skip to content

Commit

Permalink
Do not re-use a reserved field
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Robbins authored and eschulte committed Feb 24, 2020
1 parent 2d06ecb commit 98f89b3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions proto/IR.proto
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@ message IR {
repeated Module modules = 3;
map<string, AuxData> aux_data = 5;
uint32 version = 6;
CFG cfg = 7;
}
4 changes: 2 additions & 2 deletions proto/Module.proto
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ enum ISA {

message Module {
reserved "image_byte_map", "data", "symbolic_operands",
"aux_data_container", "blocks";
reserved 8, 11, 13, 14, 15;
"aux_data_container", "blocks", "cfg";
reserved 8, 10, 11, 13, 14, 15;

bytes uuid = 1;
string binary_path = 2;
Expand Down

0 comments on commit 98f89b3

Please sign in to comment.