| 1 | /* Terminate the frame unwind info section with a 4byte 0 as a sentinel; |
|---|---|
| 2 | this would be the 'length' field in a real FDE. */ |
| 3 | |
| 4 | typedef unsigned int ui32 __attribute__ ((mode (SI))); |
| 5 | static const ui32 __FRAME_END__[1] |
| 6 | __attribute__ ((used, section (".eh_frame"))) |
| 7 | = { 0 }; |
| 8 |