Skip to content

Commit

Permalink
- More debut info
Browse files Browse the repository at this point in the history
  • Loading branch information
tgiphil committed Jul 5, 2013
1 parent 834cc53 commit 53af214
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Source/Mosa.Compiler.Framework/Operand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -630,6 +630,13 @@ public override string ToString()
s.Append(' ');

s.AppendFormat("[{0}]", sigType);

PtrSigType pointerType = sigType as PtrSigType;
if (pointerType != null)
{
s.AppendFormat("-{0}", pointerType.ElementType);
}

return s.ToString();
}

Expand Down

0 comments on commit 53af214

Please sign in to comment.