# HG changeset patch # User Max Brister # Date 1339122536 18000 # Node ID e8487d98561c1062af61fce040de7a73039e4bbc # Parent 1e3d0366ac8bc0d6a9bc6c4bb1df41259c8a7040 Improve printing of jit_extract_argument diff --git a/src/pt-jit.h b/src/pt-jit.h --- a/src/pt-jit.h +++ b/src/pt-jit.h @@ -1625,9 +1625,8 @@ virtual std::ostream& print (std::ostream& os, size_t indent) const { print_indent (os, indent); - os << "exract "; - short_print (os); - return os; + + return short_print (os) << " = extract " << name (); } JIT_VALUE_ACCEPT (extract_argument)