Commit 84b5528d authored by Sam Saffron's avatar Sam Saffron

merge

parents 37b45caf 19af49f2
......@@ -3,3 +3,5 @@ bin/*
obj/*
/*.user
glob:Dapper/NuGet.exe
syntax: glob
*.docstates
......@@ -821,7 +821,7 @@ private static void EmitInt32(ILGenerator il, int value)
case 6: il.Emit(OpCodes.Ldc_I4_6); break;
case 7: il.Emit(OpCodes.Ldc_I4_7); break;
case 8: il.Emit(OpCodes.Ldc_I4_8); break;
default: il.Emit(OpCodes.Ldc_I4, value); break;
default: il.Emit(value >= -128 && value <= 127 ? OpCodes.Ldc_I4_S: OpCodes.Ldc_I4, value); break;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment