From 3fb700fe837d9ba325c3768aff81b15ce3bf3c3e Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 30 Sep 2010 17:16:49 +0000 Subject: rename test git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115174 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/MC/AsmParser/X86/x86_errors.s | 5 +++++ test/MC/AsmParser/X86/x86_instruction_errors.s | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 test/MC/AsmParser/X86/x86_errors.s delete mode 100644 test/MC/AsmParser/X86/x86_instruction_errors.s diff --git a/test/MC/AsmParser/X86/x86_errors.s b/test/MC/AsmParser/X86/x86_errors.s new file mode 100644 index 0000000..183306b --- /dev/null +++ b/test/MC/AsmParser/X86/x86_errors.s @@ -0,0 +1,5 @@ +// RUN: not llvm-mc -triple x86_64-unknown-unknown %s 2> %t.err +// RUN: FileCheck < %t.err %s + +// CHECK: error: ambiguous instructions require an explicit suffix (could be 'cmpb', 'cmpw', 'cmpl', or 'cmpq') +cmp $0, 0(%eax) diff --git a/test/MC/AsmParser/X86/x86_instruction_errors.s b/test/MC/AsmParser/X86/x86_instruction_errors.s deleted file mode 100644 index 183306b..0000000 --- a/test/MC/AsmParser/X86/x86_instruction_errors.s +++ /dev/null @@ -1,5 +0,0 @@ -// RUN: not llvm-mc -triple x86_64-unknown-unknown %s 2> %t.err -// RUN: FileCheck < %t.err %s - -// CHECK: error: ambiguous instructions require an explicit suffix (could be 'cmpb', 'cmpw', 'cmpl', or 'cmpq') -cmp $0, 0(%eax) -- cgit v1.1