Commit fe7a6ae4 by H.J. Lu Committed by H.J. Lu

Replace __buitlin_alloca with __builtin_alloca

	* gcc.target/i386/mpx/alloca-1-lbv.c (mpx_test): Replace
	__buitlin_alloca with __builtin_alloca.

From-SVN: r222151
parent 9f635aba
2015-04-16 H.J. Lu <hongjiu.lu@intel.com>
* gcc.target/i386/mpx/alloca-1-lbv.c (mpx_test): Replace
__buitlin_alloca with __builtin_alloca.
2015-04-16 Alan Lawrence <alan.lawrence@arm.com>
* gcc.target/aarch64/vldN_lane_1.c: Correct dup->lane in comments.
......
......@@ -16,7 +16,7 @@ int rd (int *p, int i)
int mpx_test (int argc, const char **argv)
{
int *buf = (int *)__buitlin_alloca (100 * sizeof(int));
int *buf = (int *)__builtin_alloca (100 * sizeof(int));
rd (buf, -1);
......
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