hotspot/src/share/vm/interpreter/templateInterpreterGenerator.cpp
changeset 40010 e32d5e545789
parent 37480 291ee208fb72
child 41323 ddd5600d4762
equal deleted inserted replaced
40009:626aa0715fe4 40010:e32d5e545789
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
   474   case Interpreter::java_lang_Float_floatToRawIntBits:
   474   case Interpreter::java_lang_Float_floatToRawIntBits:
   475   case Interpreter::java_lang_Double_longBitsToDouble:
   475   case Interpreter::java_lang_Double_longBitsToDouble:
   476   case Interpreter::java_lang_Double_doubleToRawLongBits:
   476   case Interpreter::java_lang_Double_doubleToRawLongBits:
   477     native = true;
   477     native = true;
   478     break;
   478     break;
   479 #endif // defined(TARGET_ARCH_x86) && !defined(_LP64)
   479 #endif // !IA32
   480   default:
   480   default:
   481     fatal("unexpected method kind: %d", kind);
   481     fatal("unexpected method kind: %d", kind);
   482     break;
   482     break;
   483   }
   483   }
   484 
   484