反编译一个软件,大部分代码都可以看到,但有些代码是这样的,类似于汇编:
 // ERROR //
  public static boolean checkUpdate(Context paramContext, String paramString, int paramInt1, int paramInt2, int paramInt3)
  {
    // Byte code:
    //   0: iconst_0
    //   1: istore 5
    //   3: iconst_0
    //   4: istore 6
    //   6: iload_3
    //   7: istore 7
    //   9: getstatic 92 android/os/Build:MODEL Ljava/lang/String;
    //   12: astore_3
    //   13: new 100 com/qihoo360/mobilesafe/net/NetManager
    //   16: dup
    //   17: invokespecial 101 com/qihoo360/mobilesafe/net/NetManager:<init> ()V
    //   20: astore 8
   }
  请问下大牛是什么原因,怎么解决?