summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSergey Andreenko <seandree@microsoft.com>2019-04-10 01:57:04 -0700
committerSergey Andreenko <seandree@microsoft.com>2019-04-10 01:57:04 -0700
commitfe2a2e7c7cc907f8df091c4bfbbb7250529a12c3 (patch)
tree4a8d307d8cd7f80fcdf863de3fe2db6a73b6e801 /src
parentc1b36e956e809f8075a573ffa4c91e6843b5564b (diff)
downloadcoreclr-fe2a2e7c7cc907f8df091c4bfbbb7250529a12c3.tar.gz
coreclr-fe2a2e7c7cc907f8df091c4bfbbb7250529a12c3.tar.bz2
coreclr-fe2a2e7c7cc907f8df091c4bfbbb7250529a12c3.zip
Fix newlines for ilegal trees in `gtDispTree`.
Diffstat (limited to 'src')
-rw-r--r--src/jit/gentree.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jit/gentree.cpp b/src/jit/gentree.cpp
index c7e27f8f8c..5113a60983 100644
--- a/src/jit/gentree.cpp
+++ b/src/jit/gentree.cpp
@@ -10506,14 +10506,14 @@ void Compiler::gtDispTree(GenTree* tree,
if (IsUninitialized(tree))
{
/* Value used to initalize nodes */
- printf("Uninitialized tree node!");
+ printf("Uninitialized tree node!\n");
return;
}
if (tree->gtOper >= GT_COUNT)
{
gtDispNode(tree, indentStack, msg, isLIR);
- printf("Bogus operator!");
+ printf("Bogus operator!\n");
return;
}