comparison gcc/unwind-dw2.c @ 48:9907f3135723

update CbC on GCC from 4.4.2 to 4.4.3.
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Sun, 07 Feb 2010 17:48:31 +0900
parents 3bfb6c00c1e0
children 77e2b8dfacca
comparison
equal deleted inserted replaced
45:d645ac0f55d6 48:9907f3135723
1 /* DWARF2 exception handling and frame unwind runtime interface routines. 1 /* DWARF2 exception handling and frame unwind runtime interface routines.
2 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
3 2008, 2009 Free Software Foundation, Inc. 3 2008, 2009, 2010 Free Software Foundation, Inc.
4 4
5 This file is part of GCC. 5 This file is part of GCC.
6 6
7 GCC is free software; you can redistribute it and/or modify it 7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by 8 under the terms of the GNU General Public License as published by
763 break; 763 break;
764 case DW_OP_minus: 764 case DW_OP_minus:
765 result = second - first; 765 result = second - first;
766 break; 766 break;
767 case DW_OP_mod: 767 case DW_OP_mod:
768 result = (_Unwind_Sword) second % (_Unwind_Sword) first; 768 result = second % first;
769 break; 769 break;
770 case DW_OP_mul: 770 case DW_OP_mul:
771 result = second * first; 771 result = second * first;
772 break; 772 break;
773 case DW_OP_or: 773 case DW_OP_or: