public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* java/10292: evaluation order of arguments when invoking native method
@ 2003-04-02  5:36 mamoru
  0 siblings, 0 replies; only message in thread
From: mamoru @ 2003-04-02  5:36 UTC (permalink / raw)
  To: gcc-gnats


>Number:         10292
>Category:       java
>Synopsis:       evaluation order of arguments when invoking native method
>Confidential:   no
>Severity:       critical
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          wrong-code
>Submitter-Id:   net
>Arrival-Date:   Wed Apr 02 05:36:00 UTC 2003
>Closed-Date:
>Last-Modified:
>Originator:     Mamoru Kobayashi
>Release:        3.2.2
>Organization:
>Environment:
Solaris 9 Sparc
>Description:
When invoking a native method, the evaluation order of argument lists are not guaranteed (Java's methods are OK).

For example:

class XX {
  void foo( int a, int b ) {..}
  native void bar( int a, int b );
  void test() {
    int x = 0;
    foo( x, x += 1 );
    x = 0;
    bar( x, x += 1 );
  }
}

foo receives a=0, b=1
bar receives a=1, b=1 (in my environment)

See Java Languange Specification (2nd Edition) Sec. 15.7.4.
>How-To-Repeat:

>Fix:

>Release-Note:
>Audit-Trail:
>Unformatted:


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2003-04-02  5:36 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-04-02  5:36 java/10292: evaluation order of arguments when invoking native method mamoru

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).