diff options
author | Brian <[email protected]> | 2007-07-26 15:32:02 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-07-26 15:32:02 -0600 |
commit | e3cef5887540016a6d198598cb50bebe09e3f4cf (patch) | |
tree | 01202fd6cb4a08507540eb4806dc7fdde70e1bf1 /src/mesa/shader/slang/slang_ir.c | |
parent | 9ed040c3c9afe06a8f6b28bc223751e3b2d65fe3 (diff) |
Fix function call bug 11731. Also, fix up IR_CALL/IR_FUNC confusion.
Diffstat (limited to 'src/mesa/shader/slang/slang_ir.c')
-rw-r--r-- | src/mesa/shader/slang/slang_ir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/shader/slang/slang_ir.c b/src/mesa/shader/slang/slang_ir.c index a29f3026873..92e8d0345ee 100644 --- a/src/mesa/shader/slang/slang_ir.c +++ b/src/mesa/shader/slang/slang_ir.c @@ -311,7 +311,7 @@ _slang_print_ir_tree(const slang_ir_node *n, int indent) printf("RETURN\n"); break; case IR_CALL: - printf("CALL\n"); + printf("CALL %s\n", n->Label->Name); break; case IR_LOOP: |