Commit 4aa4bf39 by David Edelsohn Committed by David Edelsohn

Change TARGET_ALTIVEC to TARGET_ALTIVEC_ABI.

From-SVN: r72589
parent 1dd04bca
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
2003-10-15 David Edelsohn <edelsohn@gnu.org> 2003-10-15 David Edelsohn <edelsohn@gnu.org>
* config/rs6000/rs6000.c (rs6000_va_arg): Only align vector * config/rs6000/rs6000.c (rs6000_va_arg): Only align vector
arguments if TARGET_ALTIVEC. arguments if TARGET_ALTIVEC_ABI.
2003-10-15 Roger Sayle <roger@eyesopen.com> 2003-10-15 Roger Sayle <roger@eyesopen.com>
......
...@@ -4371,7 +4371,7 @@ rs6000_va_arg (tree valist, tree type) ...@@ -4371,7 +4371,7 @@ rs6000_va_arg (tree valist, tree type)
else else
{ {
/* Altivec arguments must be aligned to a 128-bit boundary. */ /* Altivec arguments must be aligned to a 128-bit boundary. */
if (TARGET_ALTIVEC && ALTIVEC_VECTOR_MODE (TYPE_MODE (type))) if (TARGET_ALTIVEC_ABI && ALTIVEC_VECTOR_MODE (TYPE_MODE (type)))
{ {
tree vtype = TREE_TYPE (valist); tree vtype = TREE_TYPE (valist);
tree new_valist, modify; tree new_valist, modify;
......
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