diff options
-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] |