comparison src/cpu/zero/vm/sharedRuntime_zero.cpp @ 1197:9e1637a04678

6920970: Zero build fixes after 6849984 and 6911204 Summary: Two recent commits broke the build on Zero. Reviewed-by: twisti Contributed-by: Gary Benson <gbenson@redhat.com>
author twisti
date Thu, 28 Jan 2010 08:36:34 -0800
parents 8e7adf982378
children c18cbe5936b8
comparison
equal deleted inserted replaced
1189:89ca5ab4fa60 1197:9e1637a04678
1 /* 1 /*
2 * Copyright 2003-2007 Sun Microsystems, Inc. All Rights Reserved. 2 * Copyright 2003-2007 Sun Microsystems, Inc. All Rights Reserved.
3 * Copyright 2007, 2008, 2009 Red Hat, Inc. 3 * Copyright 2007, 2008, 2009, 2010 Red Hat, Inc.
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * 5 *
6 * This code is free software; you can redistribute it and/or modify it 6 * This code is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 only, as 7 * under the terms of the GNU General Public License version 2 only, as
8 * published by the Free Software Foundation. 8 * published by the Free Software Foundation.
45 AdapterHandlerEntry* SharedRuntime::generate_i2c2i_adapters( 45 AdapterHandlerEntry* SharedRuntime::generate_i2c2i_adapters(
46 MacroAssembler *masm, 46 MacroAssembler *masm,
47 int total_args_passed, 47 int total_args_passed,
48 int comp_args_on_stack, 48 int comp_args_on_stack,
49 const BasicType *sig_bt, 49 const BasicType *sig_bt,
50 const VMRegPair *regs) { 50 const VMRegPair *regs,
51 return new AdapterHandlerEntry( 51 AdapterFingerPrint *fingerprint) {
52 return AdapterHandlerLibrary::new_entry(
53 fingerprint,
52 ShouldNotCallThisStub(), 54 ShouldNotCallThisStub(),
53 ShouldNotCallThisStub(), 55 ShouldNotCallThisStub(),
54 ShouldNotCallThisStub()); 56 ShouldNotCallThisStub());
55 } 57 }
56 58