This is the mail archive of the gcc-prs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

java/5902: Gcj fails to parse float



>Number:         5902
>Category:       java
>Synopsis:       Gcj fails to parse float
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          rejects-legal
>Submitter-Id:   net
>Arrival-Date:   Sat Mar 09 21:16:01 PST 2002
>Closed-Date:
>Last-Modified:
>Originator:     Eric Blake
>Release:        3.1 20020309 (prerelease)
>Organization:
>Environment:
System: Linux quaffle 2.4.9-13smp #1 SMP Tue Oct 30 19:57:16 EST 2001 i686 unknown
Architecture: i686

	
host: i686-pc-linux-gnu
build: i686-pc-linux-gnu
target: i686-pc-linux-gnu
configured with: ../gcc/configure --enable-threads=posix --prefix=/fpga3/users/eblake/gcc --enable-shared
>Description:
Putting a float or double suffix on a literal has higher precedence
than an integer octal constant. This program should compile:

class Foo {
  public static void main(String[] args) {
    System.out.println(019f);
  }
}

And the output should be "19.0". However, gcj reports that 9 in an
invalid octal number:

Foo.java:3: Digit out of range in octal literal.
       System.out.println(019f);
                            ^
1 error


	
>How-To-Repeat:
Compile the program.
	
>Fix:
	
>Release-Note:
>Audit-Trail:
>Unformatted:


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]