diff options
| author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-11-25 15:28:15 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-07 21:04:51 -0700 |
| commit | 56bbb568226588fea8d4db079178b0adb61ffdea (patch) | |
| tree | 0e06a491e8b425e43f9625faf9d83e59b18c9a45 /linearize.h | |
| parent | 16fff07164c4d2406280213c0136949f2109ca8b (diff) | |
| download | sparse-dev-56bbb568226588fea8d4db079178b0adb61ffdea.tar.gz | |
Simplify constant "conditional" branches and OP_SETCC/OP_SEL instructions.
Also, remove OP_SEL from the "binop" list - it really really isn't,
since it has a third implied input in the OP_SETCC.
Diffstat (limited to 'linearize.h')
| -rw-r--r-- | linearize.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linearize.h b/linearize.h index 92615ed0..81bec665 100644 --- a/linearize.h +++ b/linearize.h @@ -107,7 +107,6 @@ enum opcode { OP_MOD, OP_SHL, OP_SHR, - OP_SEL, /* Logical */ OP_AND, @@ -137,6 +136,7 @@ enum opcode { /* Setcc - always in combination with a select or conditional branch */ OP_SETCC, + OP_SEL, /* Memory */ OP_MALLOC, |
