diff options
author | Brian <[email protected]> | 2007-02-06 20:45:43 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-02-06 20:45:43 -0700 |
commit | 204336451678ba8710756111e6cf4867d6adb40e (patch) | |
tree | c221a49a5d240d23a8122e29a01f5f47ca8635cd /src/mesa/shader/slang/slang_ir.h | |
parent | 2755c798f3cb89fcd4ece16cd740af1cd86a6b99 (diff) |
redo IR_IF node, removing IR_ELSE, IR_ENDIF
Diffstat (limited to 'src/mesa/shader/slang/slang_ir.h')
-rw-r--r-- | src/mesa/shader/slang/slang_ir.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mesa/shader/slang/slang_ir.h b/src/mesa/shader/slang/slang_ir.h index df5fc067790..0f2ceb03c07 100644 --- a/src/mesa/shader/slang/slang_ir.h +++ b/src/mesa/shader/slang/slang_ir.h @@ -53,9 +53,7 @@ typedef enum IR_CJUMP1, /* conditional jump if one (or non-zero) */ IR_COND, /* conditional expression/predicate */ - IR_IF, /* high-level IF */ - IR_ELSE, /* high-level ELSE */ - IR_ENDIF, /* high-level ENDIF */ + IR_IF, /* high-level IF/then/else */ IR_BEGIN_SUB, /* begin subroutine */ IR_END_SUB, /* end subroutine */ |