This is another follow-up patch to r217996.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@218003
91177308-0d34-0410-b5e6-
96231b3b80d8
vec256 out;
asm("something %0" : : "y"(in)); // expected-error {{invalid input size for constraint 'y'}}
- asm("something %0" : "=y"(out)); // expected-error {{invalid type 'vec256' (vector of 8 'int' values) in asm input for constraint 'y'}}
- asm("something %0, %0" : "+y"(out)); // expected-error {{invalid type 'vec256' (vector of 8 'int' values) in asm input for constraint 'y'}}
+ asm("something %0" : "=y"(out));
+ asm("something %0, %0" : "+y"(out));
return out;
}