c2_init_s390.cpp revision 12256:2844bdfd7a99
11590Srgrimes/*
21590Srgrimes * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
31590Srgrimes * Copyright (c) 2016 SAP SE. All rights reserved.
41590Srgrimes * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
51590Srgrimes *
61590Srgrimes * This code is free software; you can redistribute it and/or modify it
71590Srgrimes * under the terms of the GNU General Public License version 2 only, as
81590Srgrimes * published by the Free Software Foundation.
91590Srgrimes *
101590Srgrimes * This code is distributed in the hope that it will be useful, but WITHOUT
111590Srgrimes * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
121590Srgrimes * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
131590Srgrimes * version 2 for more details (a copy is included in the LICENSE file that
141590Srgrimes * accompanied this code).
151590Srgrimes *
161590Srgrimes * You should have received a copy of the GNU General Public License version
171590Srgrimes * 2 along with this work; if not, write to the Free Software Foundation,
181590Srgrimes * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
191590Srgrimes *
201590Srgrimes * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
211590Srgrimes * or visit www.oracle.com if you need additional information or have any
221590Srgrimes * questions.
231590Srgrimes *
241590Srgrimes */
251590Srgrimes
261590Srgrimes#include "precompiled.hpp"
271590Srgrimes#include "opto/compile.hpp"
281590Srgrimes#include "opto/node.hpp"
291590Srgrimes
301590Srgrimes// Processor dependent initialization for z/Architecture.
3141568Sarchie
321590Srgrimesvoid Compile::pd_compiler2_init() {
331590Srgrimes  guarantee(CodeEntryAlignment >= InteriorEntryAlignment, "");
3487246Smarkm}
351590Srgrimes