summaryrefslogtreecommitdiff
path: root/src/jit
diff options
context:
space:
mode:
authorCarol Eidt <carol.eidt@microsoft.com>2017-01-10 14:19:46 -0800
committerCarol Eidt <carol.eidt@microsoft.com>2017-01-10 14:19:46 -0800
commit589bf0aed4e69685e976e69678731d774ebaa05c (patch)
treebd6221434d6e724ec1a9afe8e739a2683b351cc6 /src/jit
parent8acbaf9c77a19ba833e5150b24c79449f31221fb (diff)
downloadcoreclr-589bf0aed4e69685e976e69678731d774ebaa05c.tar.gz
coreclr-589bf0aed4e69685e976e69678731d774ebaa05c.tar.bz2
coreclr-589bf0aed4e69685e976e69678731d774ebaa05c.zip
Updates based on PR review.
Diffstat (limited to 'src/jit')
-rw-r--r--src/jit/codegenxarch.cpp2
-rw-r--r--src/jit/gtlist.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/jit/codegenxarch.cpp b/src/jit/codegenxarch.cpp
index 45995cc854..99285062c4 100644
--- a/src/jit/codegenxarch.cpp
+++ b/src/jit/codegenxarch.cpp
@@ -7779,7 +7779,7 @@ void CodeGen::genPutArgStk(GenTreePutArgStk* putArgStk)
// On a 32-bit target, all of the long arguments are handled with GT_FIELD_LIST,
// and the type of the putArgStk is TYP_VOID.
- noway_assert(targetType != TYP_LONG);
+ assert(targetType != TYP_LONG);
const unsigned argSize = putArgStk->getArgSize();
assert((argSize % TARGET_POINTER_SIZE) == 0);
diff --git a/src/jit/gtlist.h b/src/jit/gtlist.h
index d0837c1633..707ae61215 100644
--- a/src/jit/gtlist.h
+++ b/src/jit/gtlist.h
@@ -46,7 +46,7 @@ GTNODE(CNS_STR , "sconst" ,GenTreeStrCon ,0,GTK_LEAF|GTK_CON
//-----------------------------------------------------------------------------
GTNODE(NOT , "~" ,GenTreeOp ,0,GTK_UNOP)
-GTNODE(NOP , "nop" ,GenTree ,0,GTK_UNOP|GTK_NOVALUE)
+GTNODE(NOP , "nop" ,GenTree ,0,GTK_UNOP)
GTNODE(NEG , "unary -" ,GenTreeOp ,0,GTK_UNOP)
GTNODE(COPY , "copy" ,GenTreeCopyOrReload,0,GTK_UNOP) // Copies a variable from its current location to a register that satisfies
// code generation constraints. The child is the actual lclVar node.