summaryrefslogtreecommitdiff
path: root/src/jit/loopcloning.h
diff options
context:
space:
mode:
authorMike Danes <onemihaid@hotmail.com>2017-05-28 09:44:02 +0300
committerMike Danes <onemihaid@hotmail.com>2017-06-08 00:24:17 +0300
commit89f56ab4f11114dc82e1983988fa74ad1bed069c (patch)
treeff3dbcbfc3e01d16dafeb5ced906d89db6554f01 /src/jit/loopcloning.h
parentcd5de7576d93f6006c4ef1659e3760488e159e82 (diff)
downloadcoreclr-89f56ab4f11114dc82e1983988fa74ad1bed069c.tar.gz
coreclr-89f56ab4f11114dc82e1983988fa74ad1bed069c.tar.bz2
coreclr-89f56ab4f11114dc82e1983988fa74ad1bed069c.zip
Make JIT dumps more readable
Replace all uses of NodeName with OpName so we get proper names instead of symbols (e.g. ADD instead of +). Names stand out better, especially in JIT dumps where we use various symbols to draw tree lines.
Diffstat (limited to 'src/jit/loopcloning.h')
-rw-r--r--src/jit/loopcloning.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/loopcloning.h b/src/jit/loopcloning.h
index 40793afcf1..20ad6ddb40 100644
--- a/src/jit/loopcloning.h
+++ b/src/jit/loopcloning.h
@@ -473,7 +473,7 @@ struct LC_Condition
void Print()
{
op1.Print();
- printf(" %s ", GenTree::NodeName(oper));
+ printf(" %s ", GenTree::OpName(oper));
op2.Print();
}
#endif