~ubuntu-branches/ubuntu/jaunty/openjdk-6/jaunty-security

« back to all changes in this revision

Viewing changes to ports/hotspot/src/share/vm/shark/sharkValue.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose, Edward Nevill, Matthias Klose
  • Date: 2009-03-02 16:18:01 UTC
  • Revision ID: james.westby@ubuntu.com-20090302161801-rubk3yhm8j0au4y1
Tags: 6b14-0ubuntu17
[ Edward Nevill ]
* Remove VFP from asm loop
* Disble the mauve testsuite for armel.

[Matthias Klose]
* Update IcedTea (20090302).

Show diffs side-by-side

added added

removed removed

Lines of Context:
149
149
 public:
150
150
  static SharkValue* jint_constant(jint value)
151
151
  {
152
 
    return create_jint(LLVMValue::jint_constant(value));
 
152
    SharkValue *result = create_jint(LLVMValue::jint_constant(value));
 
153
    if (value != 0)
 
154
      result->set_zero_checked(true);
 
155
    return result;
153
156
  }
154
157
  static SharkValue* jlong_constant(jlong value)
155
158
  {
156
 
    return create_jlong(LLVMValue::jlong_constant(value));
 
159
    SharkValue *result = create_jlong(LLVMValue::jlong_constant(value));
 
160
    if (value != 0)
 
161
      result->set_zero_checked(true);
 
162
    return result;
157
163
  }
158
164
  static SharkValue* jfloat_constant(jfloat value)
159
165
  {