diff options
author | Douglas Katzman <dougk@google.com> | 2016-10-05 14:46:14 +0000 |
---|---|---|
committer | Douglas Katzman <dougk@google.com> | 2016-10-05 14:46:14 +0000 |
commit | 8449b238eab2428663507b51e4d9d9fcf5017783 (patch) | |
tree | 1c9dd0351ac678be545c7a17a4d2aae334f9070f /llvm/test/MC/X86/intel-syntax-error.s | |
parent | c5a4269def4cd7a0abb1e37828a02bc4d7c9fe9c (diff) | |
download | bcm5719-llvm-8449b238eab2428663507b51e4d9d9fcf5017783.tar.gz bcm5719-llvm-8449b238eab2428663507b51e4d9d9fcf5017783.zip |
[X86] Fix some tests that didn't assert anything
llvm-svn: 283322
Diffstat (limited to 'llvm/test/MC/X86/intel-syntax-error.s')
-rw-r--r-- | llvm/test/MC/X86/intel-syntax-error.s | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/MC/X86/intel-syntax-error.s b/llvm/test/MC/X86/intel-syntax-error.s index 41b068eb3a1..637ba7e1c8f 100644 --- a/llvm/test/MC/X86/intel-syntax-error.s +++ b/llvm/test/MC/X86/intel-syntax-error.s @@ -18,9 +18,9 @@ _test2: .global arr .global i .set FOO, 2 -//CHECK-STDERR: error: cannot use base register with variable reference +//CHECK: error: cannot use base register with variable reference mov eax, DWORD PTR arr[ebp + 1 + (2 * 5) - 3 + 1<<1] -//CHECK-STDERR: error: cannot use index register with variable reference +//CHECK: error: cannot use index register with variable reference mov eax, DWORD PTR arr[esi*4] -//CHECK-STDERR: error: cannot use more than one symbol in memory operand +//CHECK: error: cannot use more than one symbol in memory operand mov eax, DWORD PTR arr[i] |