< prev index next >

src/cpu/zero/vm/vm_version_zero.hpp

Print this page
@  rev 8215 : 8078504: Zero fails to build.
|  Summary: Declare VM_version::initialize() and add missing include file.


  17  * 2 along with this work; if not, write to the Free Software Foundation,
  18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  19  *
  20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  21  * or visit www.oracle.com if you need additional information or have any
  22  * questions.
  23  *
  24  */
  25 
  26 #ifndef CPU_ZERO_VM_VM_VERSION_ZERO_HPP
  27 #define CPU_ZERO_VM_VM_VERSION_ZERO_HPP
  28 
  29 #include "runtime/globals_extension.hpp"
  30 #include "runtime/vm_version.hpp"
  31 
  32 class VM_Version : public Abstract_VM_Version {
  33  public:
  34   static const char* cpu_features() {
  35     return "";
  36   }

  37 };
  38 
  39 #endif // CPU_ZERO_VM_VM_VERSION_ZERO_HPP


  17  * 2 along with this work; if not, write to the Free Software Foundation,
  18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  19  *
  20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  21  * or visit www.oracle.com if you need additional information or have any
  22  * questions.
  23  *
  24  */
  25 
  26 #ifndef CPU_ZERO_VM_VM_VERSION_ZERO_HPP
  27 #define CPU_ZERO_VM_VM_VERSION_ZERO_HPP
  28 
  29 #include "runtime/globals_extension.hpp"
  30 #include "runtime/vm_version.hpp"
  31 
  32 class VM_Version : public Abstract_VM_Version {
  33  public:
  34   static const char* cpu_features() {
  35     return "";
  36   }
  37   static void initialize();
  38 };
  39 
  40 #endif // CPU_ZERO_VM_VM_VERSION_ZERO_HPP
< prev index next >