fix typo & --> && (#78085)
authorws77.cho <ws77.cho@samsung.com>
Mon, 5 Dec 2022 16:06:38 +0000 (01:06 +0900)
committerGitHub <noreply@github.com>
Mon, 5 Dec 2022 16:06:38 +0000 (08:06 -0800)
src/coreclr/vm/interpreter.cpp

index 1210ed5453a39086fae6b05e7904a0f19da6495b..3eafbc0e7557e3683b2164565661e86233ae1095 100644 (file)
@@ -112,7 +112,7 @@ InterpreterMethodInfo::InterpreterMethodInfo(CEEInfo* comp, CORINFO_METHOD_INFO*
     SetFlag<Flag_typeHasGenericArgs>(methInfo->args.sigInst.classInstCount > 0);
     SetFlag<Flag_methHasGenericArgs>(methInfo->args.sigInst.methInstCount > 0);
     _ASSERTE_MSG(!GetFlag<Flag_hasGenericsContextArg>()
-                 || ((GetFlag<Flag_typeHasGenericArgs>() & !(GetFlag<Flag_hasThisArg>() && GetFlag<Flag_thisArgIsObjPtr>())) || GetFlag<Flag_methHasGenericArgs>()),
+                 || ((GetFlag<Flag_typeHasGenericArgs>() && !(GetFlag<Flag_hasThisArg>() && GetFlag<Flag_thisArgIsObjPtr>())) || GetFlag<Flag_methHasGenericArgs>()),
                  "If the method takes a generic parameter, is a static method of generic class (or meth of a value class), and/or itself takes generic parameters");
 
     if (GetFlag<Flag_hasThisArg>())