summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarol Eidt <carol.eidt@microsoft.com>2019-01-09 21:27:55 -0800
committerCarol Eidt <carol.eidt@microsoft.com>2019-01-09 21:27:55 -0800
commitebcd9d20f5e6b454a4efb0675610fac998c7c8f6 (patch)
treea01cefbf9bbd5a02fcf185e21389fe9e8d9fd43d
parent1ac4b90ffbb741da2d2166cf880415aab6028ec1 (diff)
downloadcoreclr-ebcd9d20f5e6b454a4efb0675610fac998c7c8f6.tar.gz
coreclr-ebcd9d20f5e6b454a4efb0675610fac998c7c8f6.tar.bz2
coreclr-ebcd9d20f5e6b454a4efb0675610fac998c7c8f6.zip
PR Feedback
-rw-r--r--src/jit/morph.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/jit/morph.cpp b/src/jit/morph.cpp
index f1fe1b33a0..187b3c6eb2 100644
--- a/src/jit/morph.cpp
+++ b/src/jit/morph.cpp
@@ -3840,10 +3840,8 @@ GenTreeCall* Compiler::fgMorphArgs(GenTreeCall* call)
assert(!"Structs are not passed by reference on x64/ux");
#endif // UNIX_AMD64_ABI
}
- else
+ else // This is passed by value.
{
- // This is passed by value.
- CLANG_FORMAT_COMMENT_ANCHOR;
#ifndef _TARGET_X86_
// Check to see if we can transform this into load of a primitive type.