diff options
| author | Akira Hatanaka <ahatanaka@apple.com> | 2014-09-18 00:04:10 +0000 |
|---|---|---|
| committer | Akira Hatanaka <ahatanaka@apple.com> | 2014-09-18 00:04:10 +0000 |
| commit | d7e375d4b3da967424244ba98a8681a647741869 (patch) | |
| tree | a1809fe06582136b0c5326ea778377a61b42a207 /clang/test | |
| parent | 4ff123860b1e90b05bb0f23060b26cd0004569b0 (diff) | |
| download | bcm5719-llvm-d7e375d4b3da967424244ba98a8681a647741869.tar.gz bcm5719-llvm-d7e375d4b3da967424244ba98a8681a647741869.zip | |
Fix test case.
This is a follow-up to r217994.
llvm-svn: 217996
Diffstat (limited to 'clang/test')
| -rw-r--r-- | clang/test/CodeGen/mmx-inline-asm-error.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/mmx-inline-asm-error.c b/clang/test/CodeGen/mmx-inline-asm-error.c index 876c664e3b5..e9a2800671f 100644 --- a/clang/test/CodeGen/mmx-inline-asm-error.c +++ b/clang/test/CodeGen/mmx-inline-asm-error.c @@ -4,7 +4,7 @@ typedef int vec256 __attribute__((ext_vector_type(8))); vec256 foo(vec256 in) { vec256 out; - asm("something %0" : : "y"(in)); // expected-error {{invalid type 'vec256' (vector of 8 'int' values) in asm input for constraint 'y'}} + 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'}} |

