Skip to content

Commit e6805d1

Browse files
author
Eric Holk
committed
---
yaml --- r: 4727 b: refs/heads/master c: 3db300b h: refs/heads/master i: 4725: 2c1b768 4723: d64ec24 4719: 03827ba v: v3
1 parent bd01e6f commit e6805d1

File tree

3 files changed

+1
-10
lines changed

3 files changed

+1
-10
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: a9c46e29bcd4d8b1dcbeb9de40fb5bc7a2747aec
2+
refs/heads/master: 3db300b06e11b3dee9d6f1780f3c7b9ccad575aa

trunk/src/comp/middle/shape.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,6 @@ const shape_evec : u8 = 10u8;
6060
const shape_ivec : u8 = 11u8;
6161
const shape_tag : u8 = 12u8;
6262
const shape_box : u8 = 13u8;
63-
const shape_port : u8 = 14u8;
64-
const shape_chan : u8 = 15u8;
65-
const shape_task : u8 = 16u8;
6663
const shape_struct : u8 = 17u8;
6764
const shape_fn : u8 = 18u8;
6865
const shape_obj : u8 = 19u8;

trunk/src/rt/rust_shape.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@ const uint8_t SHAPE_EVEC = 10u;
5353
const uint8_t SHAPE_IVEC = 11u;
5454
const uint8_t SHAPE_TAG = 12u;
5555
const uint8_t SHAPE_BOX = 13u;
56-
const uint8_t SHAPE_PORT = 14u;
57-
const uint8_t SHAPE_CHAN = 15u;
58-
const uint8_t SHAPE_TASK = 16u;
5956
const uint8_t SHAPE_STRUCT = 17u;
6057
const uint8_t SHAPE_FN = 18u;
6158
const uint8_t SHAPE_OBJ = 19u;
@@ -423,9 +420,6 @@ ctxt<T>::walk(bool align) {
423420
case SHAPE_IVEC: walk_ivec(align); break;
424421
case SHAPE_TAG: walk_tag(align); break;
425422
case SHAPE_BOX: walk_box(align); break;
426-
case SHAPE_PORT: WALK_SIMPLE(walk_port); break;
427-
case SHAPE_CHAN: WALK_SIMPLE(walk_chan); break;
428-
case SHAPE_TASK: WALK_SIMPLE(walk_task); break;
429423
case SHAPE_STRUCT: walk_struct(align); break;
430424
case SHAPE_FN: WALK_SIMPLE(walk_fn); break;
431425
case SHAPE_OBJ: WALK_SIMPLE(walk_obj); break;

0 commit comments

Comments
 (0)