diff options
author | Jan Vorlicek <janvorli@microsoft.com> | 2015-04-30 07:43:29 -0700 |
---|---|---|
committer | Jan Vorlicek <janvorli@microsoft.com> | 2015-04-30 10:29:57 -0700 |
commit | 3cda3e8276af6702fc3c4ed3f798c2cf94b7ab8d (patch) | |
tree | 1e452bedf7d10d62a2671b91e0f20974a07dcac8 /src/jit/block.cpp | |
parent | f37c4d4ac3b506fb90ed950e1d1eadf637bac858 (diff) | |
download | coreclr-3cda3e8276af6702fc3c4ed3f798c2cf94b7ab8d.tar.gz coreclr-3cda3e8276af6702fc3c4ed3f798c2cf94b7ab8d.tar.bz2 coreclr-3cda3e8276af6702fc3c4ed3f798c2cf94b7ab8d.zip |
Fix new set of warnings
This change fixes a new bunch of warnings that were recently introduced
unnoticed to the coreclr / pal. Also, I've discovered that in release build,
there are some additional warnings, so I've fixed them as well.
I have also added a compiler switch to treat warnings as errors so that
we catch a new issue right away next time.
Diffstat (limited to 'src/jit/block.cpp')
-rw-r--r-- | src/jit/block.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jit/block.cpp b/src/jit/block.cpp index 8ab4cc63d4..15e6df01c4 100644 --- a/src/jit/block.cpp +++ b/src/jit/block.cpp @@ -213,7 +213,7 @@ void BasicBlock::dspBlockILRange() } else { - printf("[???.."); + printf("[???" ".."); } if (bbCodeOffsEnd != BAD_IL_OFFSET) @@ -224,7 +224,7 @@ void BasicBlock::dspBlockILRange() else { // brace-matching editor workaround for following line: ( - printf("???)"); + printf("???" ")"); } } |