summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4>2015-04-16 15:34:11 +0000
committerhjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4>2015-04-16 15:34:11 +0000
commit7f1296d948811370d7d30f71f27c1ccb6d637bcc (patch)
tree7c7460782e85e8990164ddf790573d4a5e3a8c64
parent4430f688ae61145a51c2a3cbbe902afdec135176 (diff)
downloadgcc-7f1296d948811370d7d30f71f27c1ccb6d637bcc.tar.gz
Replace __buitlin_alloca with __builtin_alloca
* gcc.target/i386/mpx/alloca-1-lbv.c (mpx_test): Replace __buitlin_alloca with __builtin_alloca. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@222151 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/gcc.target/i386/mpx/alloca-1-lbv.c2
2 files changed, 6 insertions, 1 deletions
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 <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.
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);