comparison src/cpu/zero/vm/frame_zero.cpp @ 3847:a3142bdb6707

7071823: Zero: zero/shark doesn't build after b147-fcs Reviewed-by: gbenson, twisti Contributed-by: Chris Phillips <chphilli@redhat.com>
author twisti
date Mon, 08 Aug 2011 05:49:04 -0700
parents f95d63e2154a
children 5432047c7db7
comparison
equal deleted inserted replaced
3846:4aa5974a06dd 3847:a3142bdb6707
1 /* 1 /*
2 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
3 * Copyright 2007, 2008, 2009, 2010 Red Hat, Inc. 3 * Copyright 2007, 2008, 2009, 2010, 2011 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.
415 frame_index == 0 ? "stack_word" : "local", 415 frame_index == 0 ? "stack_word" : "local",
416 (int) (stack_base - addr - 1)); 416 (int) (stack_base - addr - 1));
417 return; 417 return;
418 } 418 }
419 } 419 }
420
421 #ifdef ASSERT
422
423 void frame::describe_pd(FrameValues& values, int frame_no) {
424
425 }
426
427 #endif