Commit ce12ee9e by Carl Love Committed by Carl Love

builtins-3-p9.c (test_ne_long()): Change arguments and return type to bool long long.

gcc/testsuite/ChangeLog:

2017-01-16 Carl Love  <cel@us.ibm.com>

	* gcc.target/powerpc/builtins-3-p9.c (test_ne_long()):
	Change arguments and return type to bool long long.

From-SVN: r244499
parent 83291b8b
2017-01-16 Carl Love <cel@us.ibm.com>
* gcc.target/powerpc/builtins-3-p9.c (test_ne_long()):
Change arguments and return type to bool long long.
2017-01-16 Martin Sebor <msebor@redhat.com> 2017-01-16 Martin Sebor <msebor@redhat.com>
PR testsuite/79051 PR testsuite/79051
......
...@@ -22,8 +22,8 @@ test_ne_int (vector bool int x, vector bool int y) ...@@ -22,8 +22,8 @@ test_ne_int (vector bool int x, vector bool int y)
return vec_cmpne (x, y); return vec_cmpne (x, y);
} }
vector bool long vector bool long long
test_ne_long (vector bool long x, vector bool long y) test_ne_long (vector bool long long x, vector bool long long y)
{ {
return vec_cmpne (x, y); return vec_cmpne (x, y);
} }
......
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