1 /*
2  * Copyright (c) 2011 The Native Client Authors. All rights reserved.
3  * Use of this source code is governed by a BSD-style license that can be
4  * found in the LICENSE file.
5  */
6 
7 /* Native crtend.o
8  *
9  * Exception handling frames are aggregated into a single section called
10  * .eh_frame.  The runtime system needs to (1) have a symbol for the beginning
11  * of this section, and needs to (2) mark the end of the section by a NULL.
12  */
13 
14 static void *__EH_FRAME_END__[]
15     __attribute__((used, section(".eh_frame"), aligned(4)))
16     = { (void*)0 };
17