Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
CarolEidt committed Apr 5, 2018
1 parent 2d44ad6 commit 591fee9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jit/morph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18418,7 +18418,7 @@ Compiler::fgWalkResult Compiler::fgMorphLocalField(GenTree* tree, fgWalkData* fg
// must be enregisterable types.
// TODO-Cleanup: varTypeCanReg should presumably return true for SIMD types, but
// there may be places where that would violate existing assumptions.
var_types treeType = tree->TypeGet();
var_types treeType = tree->TypeGet();
var_types fieldType = fldVarDsc->TypeGet();
assert((varTypeCanReg(treeType) || varTypeIsSIMD(treeType)) &&
(varTypeCanReg(fieldType) || varTypeIsSIMD(fieldType)));
Expand Down

0 comments on commit 591fee9

Please sign in to comment.