diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2015-04-16 15:34:11 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2015-04-16 08:34:11 -0700 |
commit | fe7a6ae47f89db1dc8cd57127c67c1490d8cd152 (patch) | |
tree | 7c7460782e85e8990164ddf790573d4a5e3a8c64 /gcc | |
parent | 9f635abaaba726db2197869fc39c2207ac628319 (diff) | |
download | gcc-fe7a6ae47f89db1dc8cd57127c67c1490d8cd152.zip gcc-fe7a6ae47f89db1dc8cd57127c67c1490d8cd152.tar.gz gcc-fe7a6ae47f89db1dc8cd57127c67c1490d8cd152.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/i386/mpx/alloca-1-lbv.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 05da783..adb1192 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 57c05d3..1c77c19 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); |