From fe7a6ae47f89db1dc8cd57127c67c1490d8cd152 Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Thu, 16 Apr 2015 15:34:11 +0000 Subject: [PATCH] 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 --- gcc/testsuite/ChangeLog | 5 +++++ gcc/testsuite/gcc.target/i386/mpx/alloca-1-lbv.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 05da78352b2..adb1192cb18 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2015-04-16 H.J. Lu + + * gcc.target/i386/mpx/alloca-1-lbv.c (mpx_test): Replace + __buitlin_alloca with __builtin_alloca. + 2015-04-16 Alan Lawrence * gcc.target/aarch64/vldN_lane_1.c: Correct dup->lane in comments. diff --git a/gcc/testsuite/gcc.target/i386/mpx/alloca-1-lbv.c b/gcc/testsuite/gcc.target/i386/mpx/alloca-1-lbv.c index 57c05d33f89..1c77c192c17 100644 --- a/gcc/testsuite/gcc.target/i386/mpx/alloca-1-lbv.c +++ b/gcc/testsuite/gcc.target/i386/mpx/alloca-1-lbv.c @@ -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); -- 2.30.2