1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800
|
// RUN: %clang_cc1 -std=c99 %s -pedantic -verify -triple=x86_64-apple-darwin9
typedef double double2 __attribute__((ext_vector_type(2)));
typedef double double4 __attribute__((ext_vector_type(4)));
typedef float float2 __attribute__((ext_vector_type(2)));
typedef float float4 __attribute__((ext_vector_type(4)));
typedef int int2 __attribute__((ext_vector_type(2)));
typedef int int3 __attribute__((ext_vector_type(3)));
typedef unsigned unsigned3 __attribute__((ext_vector_type(3)));
typedef unsigned unsigned4 __attribute__((ext_vector_type(4)));
struct Foo {
char *p;
};
__attribute__((address_space(1))) int int_as_one;
typedef int bar;
bar b;
__attribute__((address_space(1))) float float_as_one;
typedef float waffle;
waffle waf;
void test_builtin_elementwise_abs(int i, double d, float4 v, int3 iv, unsigned u, unsigned4 uv) {
struct Foo s = __builtin_elementwise_abs(i);
// expected-error@-1 {{initializing 'struct Foo' with an expression of incompatible type 'int'}}
i = __builtin_elementwise_abs();
// expected-error@-1 {{too few arguments to function call, expected 1, have 0}}
i = __builtin_elementwise_abs(i, i);
// expected-error@-1 {{too many arguments to function call, expected 1, have 2}}
i = __builtin_elementwise_abs(v);
// expected-error@-1 {{assigning to 'int' from incompatible type 'float4' (vector of 4 'float' values)}}
u = __builtin_elementwise_abs(u);
// expected-error@-1 {{1st argument must be a signed integer or floating point type (was 'unsigned int')}}
uv = __builtin_elementwise_abs(uv);
// expected-error@-1 {{1st argument must be a signed integer or floating point type (was 'unsigned4' (vector of 4 'unsigned int' values))}}
}
void test_builtin_elementwise_add_sat(int i, short s, double d, float4 v, int3 iv, unsigned3 uv, int *p) {
i = __builtin_elementwise_add_sat(p, d);
// expected-error@-1 {{arguments are of different types ('int *' vs 'double')}}
struct Foo foo = __builtin_elementwise_add_sat(i, i);
// expected-error@-1 {{initializing 'struct Foo' with an expression of incompatible type 'int'}}
i = __builtin_elementwise_add_sat(i);
// expected-error@-1 {{too few arguments to function call, expected 2, have 1}}
i = __builtin_elementwise_add_sat();
// expected-error@-1 {{too few arguments to function call, expected 2, have 0}}
i = __builtin_elementwise_add_sat(i, i, i);
// expected-error@-1 {{too many arguments to function call, expected 2, have 3}}
i = __builtin_elementwise_add_sat(v, iv);
// expected-error@-1 {{arguments are of different types ('float4' (vector of 4 'float' values) vs 'int3' (vector of 3 'int' values))}}
i = __builtin_elementwise_add_sat(uv, iv);
// expected-error@-1 {{arguments are of different types ('unsigned3' (vector of 3 'unsigned int' values) vs 'int3' (vector of 3 'int' values))}}
v = __builtin_elementwise_add_sat(v, v);
// expected-error@-1 {{1st argument must be a vector of integers (was 'float4' (vector of 4 'float' values))}}
s = __builtin_elementwise_add_sat(i, s);
enum e { one,
two };
i = __builtin_elementwise_add_sat(one, two);
enum f { three };
enum f x = __builtin_elementwise_add_sat(one, three);
_BitInt(32) ext; // expected-warning {{'_BitInt' in C17 and earlier is a Clang extension}}
ext = __builtin_elementwise_add_sat(ext, ext);
const int ci;
i = __builtin_elementwise_add_sat(ci, i);
i = __builtin_elementwise_add_sat(i, ci);
i = __builtin_elementwise_add_sat(ci, ci);
i = __builtin_elementwise_add_sat(i, int_as_one); // ok (attributes don't match)?
i = __builtin_elementwise_add_sat(i, b); // ok (sugar doesn't match)?
int A[10];
A = __builtin_elementwise_add_sat(A, A);
// expected-error@-1 {{1st argument must be a vector, integer or floating point type (was 'int *')}}
int(ii);
int j;
j = __builtin_elementwise_add_sat(i, j);
_Complex float c1, c2;
c1 = __builtin_elementwise_add_sat(c1, c2);
// expected-error@-1 {{1st argument must be a vector, integer or floating point type (was '_Complex float')}}
}
void test_builtin_elementwise_sub_sat(int i, short s, double d, float4 v, int3 iv, unsigned3 uv, int *p) {
i = __builtin_elementwise_sub_sat(p, d);
// expected-error@-1 {{arguments are of different types ('int *' vs 'double')}}
struct Foo foo = __builtin_elementwise_sub_sat(i, i);
// expected-error@-1 {{initializing 'struct Foo' with an expression of incompatible type 'int'}}
i = __builtin_elementwise_sub_sat(i);
// expected-error@-1 {{too few arguments to function call, expected 2, have 1}}
i = __builtin_elementwise_sub_sat();
// expected-error@-1 {{too few arguments to function call, expected 2, have 0}}
i = __builtin_elementwise_sub_sat(i, i, i);
// expected-error@-1 {{too many arguments to function call, expected 2, have 3}}
i = __builtin_elementwise_sub_sat(v, iv);
// expected-error@-1 {{arguments are of different types ('float4' (vector of 4 'float' values) vs 'int3' (vector of 3 'int' values))}}
i = __builtin_elementwise_sub_sat(uv, iv);
// expected-error@-1 {{arguments are of different types ('unsigned3' (vector of 3 'unsigned int' values) vs 'int3' (vector of 3 'int' values))}}
v = __builtin_elementwise_sub_sat(v, v);
// expected-error@-1 {{1st argument must be a vector of integers (was 'float4' (vector of 4 'float' values))}}
s = __builtin_elementwise_sub_sat(i, s);
enum e { one,
two };
i = __builtin_elementwise_sub_sat(one, two);
enum f { three };
enum f x = __builtin_elementwise_sub_sat(one, three);
_BitInt(32) ext; // expected-warning {{'_BitInt' in C17 and earlier is a Clang extension}}
ext = __builtin_elementwise_sub_sat(ext, ext);
const int ci;
i = __builtin_elementwise_sub_sat(ci, i);
i = __builtin_elementwise_sub_sat(i, ci);
i = __builtin_elementwise_sub_sat(ci, ci);
i = __builtin_elementwise_sub_sat(i, int_as_one); // ok (attributes don't match)?
i = __builtin_elementwise_sub_sat(i, b); // ok (sugar doesn't match)?
int A[10];
A = __builtin_elementwise_sub_sat(A, A);
// expected-error@-1 {{1st argument must be a vector, integer or floating point type (was 'int *')}}
int(ii);
int j;
j = __builtin_elementwise_sub_sat(i, j);
_Complex float c1, c2;
c1 = __builtin_elementwise_sub_sat(c1, c2);
// expected-error@-1 {{1st argument must be a vector, integer or floating point type (was '_Complex float')}}
}
void test_builtin_elementwise_max(int i, short s, double d, float4 v, int3 iv, unsigned3 uv, int *p) {
i = __builtin_elementwise_max(p, d);
// expected-error@-1 {{arguments are of different types ('int *' vs 'double')}}
struct Foo foo = __builtin_elementwise_max(i, i);
// expected-error@-1 {{initializing 'struct Foo' with an expression of incompatible type 'int'}}
i = __builtin_elementwise_max(i);
// expected-error@-1 {{too few arguments to function call, expected 2, have 1}}
i = __builtin_elementwise_max();
// expected-error@-1 {{too few arguments to function call, expected 2, have 0}}
i = __builtin_elementwise_max(i, i, i);
// expected-error@-1 {{too many arguments to function call, expected 2, have 3}}
i = __builtin_elementwise_max(v, iv);
// expected-error@-1 {{arguments are of different types ('float4' (vector of 4 'float' values) vs 'int3' (vector of 3 'int' values))}}
i = __builtin_elementwise_max(uv, iv);
// expected-error@-1 {{arguments are of different types ('unsigned3' (vector of 3 'unsigned int' values) vs 'int3' (vector of 3 'int' values))}}
s = __builtin_elementwise_max(i, s);
enum e { one,
two };
i = __builtin_elementwise_max(one, two);
enum f { three };
enum f x = __builtin_elementwise_max(one, three);
_BitInt(32) ext; // expected-warning {{'_BitInt' in C17 and earlier is a Clang extension}}
ext = __builtin_elementwise_max(ext, ext);
const int ci;
i = __builtin_elementwise_max(ci, i);
i = __builtin_elementwise_max(i, ci);
i = __builtin_elementwise_max(ci, ci);
i = __builtin_elementwise_max(i, int_as_one); // ok (attributes don't match)?
i = __builtin_elementwise_max(i, b); // ok (sugar doesn't match)?
int A[10];
A = __builtin_elementwise_max(A, A);
// expected-error@-1 {{1st argument must be a vector, integer or floating point type (was 'int *')}}
int(ii);
int j;
j = __builtin_elementwise_max(i, j);
_Complex float c1, c2;
c1 = __builtin_elementwise_max(c1, c2);
// expected-error@-1 {{1st argument must be a vector, integer or floating point type (was '_Complex float')}}
}
void test_builtin_elementwise_min(int i, short s, double d, float4 v, int3 iv, unsigned3 uv, int *p) {
i = __builtin_elementwise_min(p, d);
// expected-error@-1 {{arguments are of different types ('int *' vs 'double')}}
struct Foo foo = __builtin_elementwise_min(i, i);
// expected-error@-1 {{initializing 'struct Foo' with an expression of incompatible type 'int'}}
i = __builtin_elementwise_min(i);
// expected-error@-1 {{too few arguments to function call, expected 2, have 1}}
i = __builtin_elementwise_min();
// expected-error@-1 {{too few arguments to function call, expected 2, have 0}}
i = __builtin_elementwise_min(i, i, i);
// expected-error@-1 {{too many arguments to function call, expected 2, have 3}}
i = __builtin_elementwise_min(v, iv);
// expected-error@-1 {{arguments are of different types ('float4' (vector of 4 'float' values) vs 'int3' (vector of 3 'int' values))}}
i = __builtin_elementwise_min(uv, iv);
// expected-error@-1 {{arguments are of different types ('unsigned3' (vector of 3 'unsigned int' values) vs 'int3' (vector of 3 'int' values))}}
s = __builtin_elementwise_min(i, s);
enum e { one,
two };
i = __builtin_elementwise_min(one, two);
enum f { three };
enum f x = __builtin_elementwise_min(one, three);
_BitInt(32) ext; // expected-warning {{'_BitInt' in C17 and earlier is a Clang extension}}
ext = __builtin_elementwise_min(ext, ext);
const int ci;
i = __builtin_elementwise_min(ci, i);
i = __builtin_elementwise_min(i, ci);
i = __builtin_elementwise_min(ci, ci);
i = __builtin_elementwise_min(i, int_as_one); // ok (attributes don't match)?
i = __builtin_elementwise_min(i, b); // ok (sugar doesn't match)?
int A[10];
A = __builtin_elementwise_min(A, A);
// expected-error@-1 {{1st argument must be a vector, integer or floating point type (was 'int *')}}
int(ii);
int j;
j = __builtin_elementwise_min(i, j);
_Complex float c1, c2;
c1 = __builtin_elementwise_min(c1, c2);
// expected-error@-1 {{1st argument must be a vector, integer or floating point type (was '_Complex float')}}
}
void test_builtin_elementwise_ceil(int i, float f, double d, float4 v, int3 iv, unsigned u, unsigned4 uv) {
struct Foo s = __builtin_elementwise_ceil(f);
// expected-error@-1 {{initializing 'struct Foo' with an expression of incompatible type 'float'}}
i = __builtin_elementwise_ceil();
// expected-error@-1 {{too few arguments to function call, expected 1, have 0}}
i = __builtin_elementwise_ceil(i);
// expected-error@-1 {{1st argument must be a floating point type (was 'int')}}
i = __builtin_elementwise_ceil(f, f);
// expected-error@-1 {{too many arguments to function call, expected 1, have 2}}
u = __builtin_elementwise_ceil(u);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned int')}}
uv = __builtin_elementwise_ceil(uv);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned4' (vector of 4 'unsigned int' values))}}
}
void test_builtin_elementwise_cos(int i, float f, double d, float4 v, int3 iv, unsigned u, unsigned4 uv) {
struct Foo s = __builtin_elementwise_cos(f);
// expected-error@-1 {{initializing 'struct Foo' with an expression of incompatible type 'float'}}
i = __builtin_elementwise_cos();
// expected-error@-1 {{too few arguments to function call, expected 1, have 0}}
i = __builtin_elementwise_cos(i);
// expected-error@-1 {{1st argument must be a floating point type (was 'int')}}
i = __builtin_elementwise_cos(f, f);
// expected-error@-1 {{too many arguments to function call, expected 1, have 2}}
u = __builtin_elementwise_cos(u);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned int')}}
uv = __builtin_elementwise_cos(uv);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned4' (vector of 4 'unsigned int' values))}}
}
void test_builtin_elementwise_exp(int i, float f, double d, float4 v, int3 iv, unsigned u, unsigned4 uv) {
struct Foo s = __builtin_elementwise_exp(f);
// expected-error@-1 {{initializing 'struct Foo' with an expression of incompatible type 'float'}}
i = __builtin_elementwise_exp();
// expected-error@-1 {{too few arguments to function call, expected 1, have 0}}
i = __builtin_elementwise_exp(i);
// expected-error@-1 {{1st argument must be a floating point type (was 'int')}}
i = __builtin_elementwise_exp(f, f);
// expected-error@-1 {{too many arguments to function call, expected 1, have 2}}
u = __builtin_elementwise_exp(u);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned int')}}
uv = __builtin_elementwise_exp(uv);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned4' (vector of 4 'unsigned int' values))}}
}
void test_builtin_elementwise_exp2(int i, float f, double d, float4 v, int3 iv, unsigned u, unsigned4 uv) {
struct Foo s = __builtin_elementwise_exp2(f);
// expected-error@-1 {{initializing 'struct Foo' with an expression of incompatible type 'float'}}
i = __builtin_elementwise_exp2();
// expected-error@-1 {{too few arguments to function call, expected 1, have 0}}
i = __builtin_elementwise_exp2(i);
// expected-error@-1 {{1st argument must be a floating point type (was 'int')}}
i = __builtin_elementwise_exp2(f, f);
// expected-error@-1 {{too many arguments to function call, expected 1, have 2}}
u = __builtin_elementwise_exp2(u);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned int')}}
uv = __builtin_elementwise_exp2(uv);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned4' (vector of 4 'unsigned int' values))}}
}
void test_builtin_elementwise_floor(int i, float f, double d, float4 v, int3 iv, unsigned u, unsigned4 uv) {
struct Foo s = __builtin_elementwise_floor(f);
// expected-error@-1 {{initializing 'struct Foo' with an expression of incompatible type 'float'}}
i = __builtin_elementwise_floor();
// expected-error@-1 {{too few arguments to function call, expected 1, have 0}}
i = __builtin_elementwise_floor(i);
// expected-error@-1 {{1st argument must be a floating point type (was 'int')}}
i = __builtin_elementwise_floor(f, f);
// expected-error@-1 {{too many arguments to function call, expected 1, have 2}}
u = __builtin_elementwise_floor(u);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned int')}}
uv = __builtin_elementwise_floor(uv);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned4' (vector of 4 'unsigned int' values))}}
}
void test_builtin_elementwise_log(int i, float f, double d, float4 v, int3 iv, unsigned u, unsigned4 uv) {
struct Foo s = __builtin_elementwise_log(f);
// expected-error@-1 {{initializing 'struct Foo' with an expression of incompatible type 'float'}}
i = __builtin_elementwise_log();
// expected-error@-1 {{too few arguments to function call, expected 1, have 0}}
i = __builtin_elementwise_log(i);
// expected-error@-1 {{1st argument must be a floating point type (was 'int')}}
i = __builtin_elementwise_log(f, f);
// expected-error@-1 {{too many arguments to function call, expected 1, have 2}}
u = __builtin_elementwise_log(u);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned int')}}
uv = __builtin_elementwise_log(uv);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned4' (vector of 4 'unsigned int' values))}}
}
void test_builtin_elementwise_log10(int i, float f, double d, float4 v, int3 iv, unsigned u, unsigned4 uv) {
struct Foo s = __builtin_elementwise_log10(f);
// expected-error@-1 {{initializing 'struct Foo' with an expression of incompatible type 'float'}}
i = __builtin_elementwise_log10();
// expected-error@-1 {{too few arguments to function call, expected 1, have 0}}
i = __builtin_elementwise_log10(i);
// expected-error@-1 {{1st argument must be a floating point type (was 'int')}}
i = __builtin_elementwise_log10(f, f);
// expected-error@-1 {{too many arguments to function call, expected 1, have 2}}
u = __builtin_elementwise_log10(u);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned int')}}
uv = __builtin_elementwise_log10(uv);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned4' (vector of 4 'unsigned int' values))}}
}
void test_builtin_elementwise_log2(int i, float f, double d, float4 v, int3 iv, unsigned u, unsigned4 uv) {
struct Foo s = __builtin_elementwise_log2(f);
// expected-error@-1 {{initializing 'struct Foo' with an expression of incompatible type 'float'}}
i = __builtin_elementwise_log2();
// expected-error@-1 {{too few arguments to function call, expected 1, have 0}}
i = __builtin_elementwise_log2(i);
// expected-error@-1 {{1st argument must be a floating point type (was 'int')}}
i = __builtin_elementwise_log2(f, f);
// expected-error@-1 {{too many arguments to function call, expected 1, have 2}}
u = __builtin_elementwise_log2(u);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned int')}}
uv = __builtin_elementwise_log2(uv);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned4' (vector of 4 'unsigned int' values))}}
}
void test_builtin_elementwise_pow(int i, short s, double d, float4 v, int3 iv, unsigned3 uv, int *p) {
i = __builtin_elementwise_pow(p, d);
// expected-error@-1 {{arguments are of different types ('int *' vs 'double')}}
struct Foo foo = __builtin_elementwise_pow(i, i);
// expected-error@-1 {{1st argument must be a floating point type (was 'int')}}
i = __builtin_elementwise_pow(i);
// expected-error@-1 {{too few arguments to function call, expected 2, have 1}}
i = __builtin_elementwise_pow();
// expected-error@-1 {{too few arguments to function call, expected 2, have 0}}
i = __builtin_elementwise_pow(i, i, i);
// expected-error@-1 {{too many arguments to function call, expected 2, have 3}}
i = __builtin_elementwise_pow(v, iv);
// expected-error@-1 {{arguments are of different types ('float4' (vector of 4 'float' values) vs 'int3' (vector of 3 'int' values))}}
i = __builtin_elementwise_pow(uv, iv);
// expected-error@-1 {{arguments are of different types ('unsigned3' (vector of 3 'unsigned int' values) vs 'int3' (vector of 3 'int' values))}}
}
void test_builtin_elementwise_roundeven(int i, float f, double d, float4 v, int3 iv, unsigned u, unsigned4 uv) {
struct Foo s = __builtin_elementwise_roundeven(f);
// expected-error@-1 {{initializing 'struct Foo' with an expression of incompatible type 'float'}}
i = __builtin_elementwise_roundeven();
// expected-error@-1 {{too few arguments to function call, expected 1, have 0}}
i = __builtin_elementwise_roundeven(i);
// expected-error@-1 {{1st argument must be a floating point type (was 'int')}}
i = __builtin_elementwise_roundeven(f, f);
// expected-error@-1 {{too many arguments to function call, expected 1, have 2}}
u = __builtin_elementwise_roundeven(u);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned int')}}
uv = __builtin_elementwise_roundeven(uv);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned4' (vector of 4 'unsigned int' values))}}
}
void test_builtin_elementwise_round(int i, float f, double d, float4 v, int3 iv, unsigned u, unsigned4 uv) {
struct Foo s = __builtin_elementwise_round(f);
// expected-error@-1 {{initializing 'struct Foo' with an expression of incompatible type 'float'}}
i = __builtin_elementwise_round();
// expected-error@-1 {{too few arguments to function call, expected 1, have 0}}
i = __builtin_elementwise_round(i);
// expected-error@-1 {{1st argument must be a floating point type (was 'int')}}
i = __builtin_elementwise_round(f, f);
// expected-error@-1 {{too many arguments to function call, expected 1, have 2}}
u = __builtin_elementwise_round(u);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned int')}}
uv = __builtin_elementwise_round(uv);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned4' (vector of 4 'unsigned int' values))}}
// FIXME: Error should not mention integer
_Complex float c1, c2;
c1 = __builtin_elementwise_round(c1);
// expected-error@-1 {{1st argument must be a vector, integer or floating point type (was '_Complex float')}}
}
void test_builtin_elementwise_rint(int i, float f, double d, float4 v, int3 iv, unsigned u, unsigned4 uv) {
struct Foo s = __builtin_elementwise_rint(f);
// expected-error@-1 {{initializing 'struct Foo' with an expression of incompatible type 'float'}}
i = __builtin_elementwise_rint();
// expected-error@-1 {{too few arguments to function call, expected 1, have 0}}
i = __builtin_elementwise_rint(i);
// expected-error@-1 {{1st argument must be a floating point type (was 'int')}}
i = __builtin_elementwise_rint(f, f);
// expected-error@-1 {{too many arguments to function call, expected 1, have 2}}
u = __builtin_elementwise_rint(u);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned int')}}
uv = __builtin_elementwise_rint(uv);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned4' (vector of 4 'unsigned int' values))}}
// FIXME: Error should not mention integer
_Complex float c1, c2;
c1 = __builtin_elementwise_rint(c1);
// expected-error@-1 {{1st argument must be a vector, integer or floating point type (was '_Complex float')}}
}
void test_builtin_elementwise_nearbyint(int i, float f, double d, float4 v, int3 iv, unsigned u, unsigned4 uv) {
struct Foo s = __builtin_elementwise_nearbyint(f);
// expected-error@-1 {{initializing 'struct Foo' with an expression of incompatible type 'float'}}
i = __builtin_elementwise_nearbyint();
// expected-error@-1 {{too few arguments to function call, expected 1, have 0}}
i = __builtin_elementwise_nearbyint(i);
// expected-error@-1 {{1st argument must be a floating point type (was 'int')}}
i = __builtin_elementwise_nearbyint(f, f);
// expected-error@-1 {{too many arguments to function call, expected 1, have 2}}
u = __builtin_elementwise_nearbyint(u);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned int')}}
uv = __builtin_elementwise_nearbyint(uv);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned4' (vector of 4 'unsigned int' values))}}
// FIXME: Error should not mention integer
_Complex float c1, c2;
c1 = __builtin_elementwise_nearbyint(c1);
// expected-error@-1 {{1st argument must be a vector, integer or floating point type (was '_Complex float')}}
}
void test_builtin_elementwise_sin(int i, float f, double d, float4 v, int3 iv, unsigned u, unsigned4 uv) {
struct Foo s = __builtin_elementwise_sin(f);
// expected-error@-1 {{initializing 'struct Foo' with an expression of incompatible type 'float'}}
i = __builtin_elementwise_sin();
// expected-error@-1 {{too few arguments to function call, expected 1, have 0}}
i = __builtin_elementwise_sin(i);
// expected-error@-1 {{1st argument must be a floating point type (was 'int')}}
i = __builtin_elementwise_sin(f, f);
// expected-error@-1 {{too many arguments to function call, expected 1, have 2}}
u = __builtin_elementwise_sin(u);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned int')}}
uv = __builtin_elementwise_sin(uv);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned4' (vector of 4 'unsigned int' values))}}
}
void test_builtin_elementwise_trunc(int i, float f, double d, float4 v, int3 iv, unsigned u, unsigned4 uv) {
struct Foo s = __builtin_elementwise_trunc(f);
// expected-error@-1 {{initializing 'struct Foo' with an expression of incompatible type 'float'}}
i = __builtin_elementwise_trunc();
// expected-error@-1 {{too few arguments to function call, expected 1, have 0}}
i = __builtin_elementwise_trunc(i);
// expected-error@-1 {{1st argument must be a floating point type (was 'int')}}
i = __builtin_elementwise_trunc(f, f);
// expected-error@-1 {{too many arguments to function call, expected 1, have 2}}
u = __builtin_elementwise_trunc(u);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned int')}}
uv = __builtin_elementwise_trunc(uv);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned4' (vector of 4 'unsigned int' values))}}
}
void test_builtin_elementwise_canonicalize(int i, float f, double d, float4 v, int3 iv, unsigned u, unsigned4 uv) {
struct Foo s = __builtin_elementwise_canonicalize(f);
// expected-error@-1 {{initializing 'struct Foo' with an expression of incompatible type 'float'}}
i = __builtin_elementwise_canonicalize();
// expected-error@-1 {{too few arguments to function call, expected 1, have 0}}
i = __builtin_elementwise_canonicalize(i);
// expected-error@-1 {{1st argument must be a floating point type (was 'int')}}
i = __builtin_elementwise_canonicalize(f, f);
// expected-error@-1 {{too many arguments to function call, expected 1, have 2}}
u = __builtin_elementwise_canonicalize(u);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned int')}}
uv = __builtin_elementwise_canonicalize(uv);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned4' (vector of 4 'unsigned int' values))}}
}
void test_builtin_elementwise_copysign(int i, short s, double d, float f, float4 v, int3 iv, unsigned3 uv, int *p) {
i = __builtin_elementwise_copysign(p, d);
// expected-error@-1 {{1st argument must be a floating point type (was 'int *')}}
i = __builtin_elementwise_copysign(i, i);
// expected-error@-1 {{1st argument must be a floating point type (was 'int')}}
i = __builtin_elementwise_copysign(i);
// expected-error@-1 {{too few arguments to function call, expected 2, have 1}}
i = __builtin_elementwise_copysign();
// expected-error@-1 {{too few arguments to function call, expected 2, have 0}}
i = __builtin_elementwise_copysign(i, i, i);
// expected-error@-1 {{too many arguments to function call, expected 2, have 3}}
i = __builtin_elementwise_copysign(v, iv);
// expected-error@-1 {{2nd argument must be a floating point type (was 'int3' (vector of 3 'int' values))}}
i = __builtin_elementwise_copysign(uv, iv);
// expected-error@-1 {{1st argument must be a floating point type (was 'unsigned3' (vector of 3 'unsigned int' values))}}
s = __builtin_elementwise_copysign(i, s);
// expected-error@-1 {{1st argument must be a floating point type (was 'int')}}
f = __builtin_elementwise_copysign(f, i);
// expected-error@-1 {{2nd argument must be a floating point type (was 'int')}}
f = __builtin_elementwise_copysign(i, f);
// expected-error@-1 {{1st argument must be a floating point type (was 'int')}}
enum e { one,
two };
i = __builtin_elementwise_copysign(one, two);
// expected-error@-1 {{1st argument must be a floating point type (was 'int')}}
enum f { three };
enum f x = __builtin_elementwise_copysign(one, three);
// expected-error@-1 {{1st argument must be a floating point type (was 'int')}}
_BitInt(32) ext; // expected-warning {{'_BitInt' in C17 and earlier is a Clang extension}}
ext = __builtin_elementwise_copysign(ext, ext);
// expected-error@-1 {{1st argument must be a floating point type (was '_BitInt(32)')}}
const float cf32;
f = __builtin_elementwise_copysign(cf32, f);
f = __builtin_elementwise_copysign(f, cf32);
f = __builtin_elementwise_copysign(cf32, f);
f = __builtin_elementwise_copysign(f, float_as_one); // ok (attributes don't match)?
f = __builtin_elementwise_copysign(f, waf); // ok (sugar doesn't match)?
float A[10];
A = __builtin_elementwise_copysign(A, A);
// expected-error@-1 {{1st argument must be a floating point type (was 'float *')}}
float(ii);
float j;
j = __builtin_elementwise_copysign(f, j);
_Complex float c1, c2;
c1 = __builtin_elementwise_copysign(c1, c2);
// expected-error@-1 {{1st argument must be a floating point type (was '_Complex float')}}
double f64 = 0.0;
double tmp0 = __builtin_elementwise_copysign(f64, f);
// expected-error@-1 {{arguments are of different types ('double' vs 'float')}}
float tmp1 = __builtin_elementwise_copysign(f, f64);
//expected-error@-1 {{arguments are of different types ('float' vs 'double')}}
float4 v4f32 = 0.0f;
float4 tmp2 = __builtin_elementwise_copysign(v4f32, f);
// expected-error@-1 {{arguments are of different types ('float4' (vector of 4 'float' values) vs 'float')}}
float tmp3 = __builtin_elementwise_copysign(f, v4f32);
// expected-error@-1 {{arguments are of different types ('float' vs 'float4' (vector of 4 'float' values))}}
float2 v2f32 = 0.0f;
double4 v4f64 = 0.0;
double4 tmp4 = __builtin_elementwise_copysign(v4f64, v4f32);
// expected-error@-1 {{arguments are of different types ('double4' (vector of 4 'double' values) vs 'float4' (vector of 4 'float' values))}}
float4 tmp6 = __builtin_elementwise_copysign(v4f32, v4f64);
// expected-error@-1 {{arguments are of different types ('float4' (vector of 4 'float' values) vs 'double4' (vector of 4 'double' values))}}
float4 tmp7 = __builtin_elementwise_copysign(v4f32, v2f32);
// expected-error@-1 {{arguments are of different types ('float4' (vector of 4 'float' values) vs 'float2' (vector of 2 'float' values))}}
float2 tmp8 = __builtin_elementwise_copysign(v2f32, v4f32);
// expected-error@-1 {{arguments are of different types ('float2' (vector of 2 'float' values) vs 'float4' (vector of 4 'float' values))}}
float2 tmp9 = __builtin_elementwise_copysign(v4f32, v4f32);
// expected-error@-1 {{initializing 'float2' (vector of 2 'float' values) with an expression of incompatible type 'float4' (vector of 4 'float' values)}}
}
void test_builtin_elementwise_fma(int i32, int2 v2i32, short i16,
double f64, double2 v2f64, double2 v3f64,
float f32, float2 v2f32, float v3f32, float4 v4f32,
const float4 c_v4f32,
int3 v3i32, int *ptr) {
f32 = __builtin_elementwise_fma();
// expected-error@-1 {{too few arguments to function call, expected 3, have 0}}
f32 = __builtin_elementwise_fma(f32);
// expected-error@-1 {{too few arguments to function call, expected 3, have 1}}
f32 = __builtin_elementwise_fma(f32, f32);
// expected-error@-1 {{too few arguments to function call, expected 3, have 2}}
f32 = __builtin_elementwise_fma(f32, f32, f32, f32);
// expected-error@-1 {{too many arguments to function call, expected 3, have 4}}
f32 = __builtin_elementwise_fma(f64, f32, f32);
// expected-error@-1 {{arguments are of different types ('double' vs 'float')}}
f32 = __builtin_elementwise_fma(f32, f64, f32);
// expected-error@-1 {{arguments are of different types ('float' vs 'double')}}
f32 = __builtin_elementwise_fma(f32, f32, f64);
// expected-error@-1 {{arguments are of different types ('float' vs 'double')}}
f32 = __builtin_elementwise_fma(f32, f32, f64);
// expected-error@-1 {{arguments are of different types ('float' vs 'double')}}
f64 = __builtin_elementwise_fma(f64, f32, f32);
// expected-error@-1 {{arguments are of different types ('double' vs 'float')}}
f64 = __builtin_elementwise_fma(f64, f64, f32);
// expected-error@-1 {{arguments are of different types ('double' vs 'float')}}
f64 = __builtin_elementwise_fma(f64, f32, f64);
// expected-error@-1 {{arguments are of different types ('double' vs 'float')}}
v2f64 = __builtin_elementwise_fma(v2f32, f64, f64);
// expected-error@-1 {{arguments are of different types ('float2' (vector of 2 'float' values) vs 'double'}}
v2f64 = __builtin_elementwise_fma(v2f32, v2f64, f64);
// expected-error@-1 {{arguments are of different types ('float2' (vector of 2 'float' values) vs 'double2' (vector of 2 'double' values)}}
v2f64 = __builtin_elementwise_fma(v2f32, f64, v2f64);
// expected-error@-1 {{arguments are of different types ('float2' (vector of 2 'float' values) vs 'double'}}
v2f64 = __builtin_elementwise_fma(f64, v2f32, v2f64);
// expected-error@-1 {{arguments are of different types ('double' vs 'float2' (vector of 2 'float' values)}}
v2f64 = __builtin_elementwise_fma(f64, v2f64, v2f64);
// expected-error@-1 {{arguments are of different types ('double' vs 'double2' (vector of 2 'double' values)}}
i32 = __builtin_elementwise_fma(i32, i32, i32);
// expected-error@-1 {{1st argument must be a floating point type (was 'int')}}
v2i32 = __builtin_elementwise_fma(v2i32, v2i32, v2i32);
// expected-error@-1 {{1st argument must be a floating point type (was 'int2' (vector of 2 'int' values))}}
f32 = __builtin_elementwise_fma(f32, f32, i32);
// expected-error@-1 {{3rd argument must be a floating point type (was 'int')}}
f32 = __builtin_elementwise_fma(f32, i32, f32);
// expected-error@-1 {{2nd argument must be a floating point type (was 'int')}}
f32 = __builtin_elementwise_fma(f32, f32, i32);
// expected-error@-1 {{3rd argument must be a floating point type (was 'int')}}
_Complex float c1, c2, c3;
c1 = __builtin_elementwise_fma(c1, f32, f32);
// expected-error@-1 {{1st argument must be a floating point type (was '_Complex float')}}
c2 = __builtin_elementwise_fma(f32, c2, f32);
// expected-error@-1 {{2nd argument must be a floating point type (was '_Complex float')}}
c3 = __builtin_elementwise_fma(f32, f32, c3);
// expected-error@-1 {{3rd argument must be a floating point type (was '_Complex float')}}
}
|