Commit 08f215a2 by Artjoms Sinkarovs Committed by Georg-Johann Lay

vector-compare-1.c: Fix trailing white spaces.

2011-10-04  Artem Shinkarov  <artyom.shinkaroff@gmail.com>
	* gcc.c-torture/execute/vector-compare-1.c: Fix trailing white
	spaces.
	(main): Use __typeof to get result type of comparison.

From-SVN: r179497
parent 398f05da
2011-10-04 Artem Shinkarov <artyom.shinkaroff@gmail.com>
* gcc.c-torture/execute/vector-compare-1.c: Fix trailing white
spaces.
(main): Use __typeof to get result type of comparison.
2011-10-04 Ira Rosen <ira.rosen@linaro.org>
* lib/target-supports.exp (check_effective_target_vect_multiple_sizes):
......
......@@ -102,7 +102,7 @@ int main (int argc, char *argv[]) {
/* Float comparison. */
vector (4, float) f0;
vector (4, float) f1;
vector (4, int) ifres;
__typeof (f0 == f1) ifres;
f0 = (vector (4, float)){(float)argc, 1., 2., 10.};
f1 = (vector (4, float)){0., 3., 2., (float)-23};
......@@ -111,7 +111,7 @@ int main (int argc, char *argv[]) {
/* Double comparison. */
vector (2, double) d0;
vector (2, double) d1;
vector (2, long long) idres;
__typeof (d0 == d1) idres;
d0 = (vector (2, double)){(double)argc, 10.};
d1 = (vector (2, double)){0., (double)-23};
......
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