Commit d1c7d3a8 by Kugan Vivekanandarajah Committed by Kugan Vivekanandarajah

test_frame_common.h: Add noclone attribute such that cloned verions of tested…

test_frame_common.h: Add noclone attribute such that cloned verions of tested functions are not created.

gcc/testsuite/ChangeLog:

2016-10-24  Kugan Vivekanandarajah  <kuganvi@linaro.org>

	* gcc.target/aarch64/test_frame_common.h: Add noclone attribute
	such that cloned verions of tested functions are not created.

From-SVN: r241499
parent 13926b24
2016-10-24 Kugan Vivekanandarajah <kuganvi@linaro.org>
* gcc.target/aarch64/test_frame_common.h: Add noclone attribute
such that cloned verions of tested functions are not created.
2016-10-24 Steven G. Kargl <kargl@gcc.gnu.org>
PR fortran/71895
......
......@@ -2,7 +2,7 @@ extern void abort ();
#define CVT(v) ((unsigned char)(v))
static void __attribute__((noinline))
static void __attribute__((noinline, noclone))
check_args_8 (int a0, int a1, int a2, int a3, int a4, int a5, int a6, int a7,
int a8)
{
......@@ -18,7 +18,7 @@ check_args_8 (int a0, int a1, int a2, int a3, int a4, int a5, int a6, int a7,
abort ();
}
static void __attribute__((noinline))
static void __attribute__((noinline, noclone))
check_args_24 (int a0, int a1, int a2, int a3, int a4, int a5, int a6, int a7,
int a8, int a9, int a10)
{
......@@ -36,7 +36,7 @@ check_args_24 (int a0, int a1, int a2, int a3, int a4, int a5, int a6, int a7,
abort ();
}
void __attribute__ ((noinline))
void __attribute__ ((noinline, noclone))
initialize_array (unsigned char *a, int len)
{
int i;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment