Browse Source

Fix typos in comments

pull/443/head
Daniel Grunwald 12 years ago
parent
commit
eee2794eb4
  1. 6
      ICSharpCode.Decompiler/ILAst/ILAstBuilder.cs

6
ICSharpCode.Decompiler/ILAst/ILAstBuilder.cs

@ -413,11 +413,11 @@ namespace ICSharpCode.Decompiler.ILAst
} }
} }
// Occasionally the compilers or obfuscators generate unreachable code (which might be intentonally invalid) // Occasionally the compilers or obfuscators generate unreachable code (which might be intentionally invalid)
// I belive it is safe to just remove it // I believe it is safe to just remove it
body.RemoveAll(b => b.StackBefore == null); body.RemoveAll(b => b.StackBefore == null);
// Genertate temporary variables to replace stack // Generate temporary variables to replace stack
foreach(ByteCode byteCode in body) { foreach(ByteCode byteCode in body) {
int argIdx = 0; int argIdx = 0;
int popCount = byteCode.PopCount ?? byteCode.StackBefore.Length; int popCount = byteCode.PopCount ?? byteCode.StackBefore.Length;

Loading…
Cancel
Save