Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4042268

x86 misevaluates (Integer.MIN_VALUE/(-1))

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.1.1
    • hotspot
    • x86
    • solaris_2.5.1


      allan.jacobs@Eng 1997-03-31

      algol% cat mydiv.java
      class mydiv {
      public static void main ( String[] argv ) {
      System.out.println((Integer.MIN_VALUE/(-1))==(Integer.MIN_VALUE));
      }
      }


      On a Sparc:
      algol% javac mydiv.java
      algol% java -Djava.compiler=none mydiv
      true
      algol% java -Djava.compiler=sunwjit mydiv
      true

      The class file generated by the Sparc compiler can be run on an Intel:
      x86-trident% java -Djava.compiler=none mydiv
      true
      x86-trident% java -Djava.compiler=sunwjit mydiv
      true



      But, compiling on Intel is a problem:
      x86-trident% javac mydiv.java
      mydiv.java:4: Arithmetic exception.
      System.out.println((Integer.MIN_VALUE/(-1))==(Integer.MIN_VALUE));
                                           ^
      1 error

            never Tom Rodriguez
            ajacobssunw Allan Jacobs (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: