comparison gcc/brig/brigfrontend/brig-control-handler.cc @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
1 /* brig-control-handler.cc -- brig control directive handling 1 /* brig-control-handler.cc -- brig control directive handling
2 Copyright (C) 2016-2018 Free Software Foundation, Inc. 2 Copyright (C) 2016-2020 Free Software Foundation, Inc.
3 Contributed by Pekka Jaaskelainen <pekka.jaaskelainen@parmance.com> 3 Contributed by Pekka Jaaskelainen <pekka.jaaskelainen@parmance.com>
4 for General Processor Tech. 4 for General Processor Tech.
5 5
6 This file is part of GCC. 6 This file is part of GCC.
7 7
100 case BRIG_CONTROL_ENABLEBREAKEXCEPTIONS: 100 case BRIG_CONTROL_ENABLEBREAKEXCEPTIONS:
101 case BRIG_CONTROL_ENABLEDETECTEXCEPTIONS: 101 case BRIG_CONTROL_ENABLEDETECTEXCEPTIONS:
102 /* Unimplemented. */ 102 /* Unimplemented. */
103 break; 103 break;
104 default: 104 default:
105 sorry ("Unsupported control directive %x.\n", inst->control); 105 sorry ("Unsupported control directive %x.", inst->control);
106 } 106 }
107 return base->byteCount; 107 return base->byteCount;
108 } 108 }