diff options
author | rdivacky <rdivacky@FreeBSD.org> | 2009-10-15 16:26:17 +0000 |
---|---|---|
committer | rdivacky <rdivacky@FreeBSD.org> | 2009-10-15 16:26:17 +0000 |
commit | 1adacceba9c9ee0f16e54388e56c9a249b296f75 (patch) | |
tree | fbc3e1401bc9623b861166be5940c750f5ca52da /test/MC | |
parent | 5effb5c6a161c1bdbdd9585dfdc97a6105e3df66 (diff) | |
download | FreeBSD-src-1adacceba9c9ee0f16e54388e56c9a249b296f75.zip FreeBSD-src-1adacceba9c9ee0f16e54388e56c9a249b296f75.tar.gz |
Delete all stale files.
Diffstat (limited to 'test/MC')
-rw-r--r-- | test/MC/AsmParser/x86_operands.s | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/test/MC/AsmParser/x86_operands.s b/test/MC/AsmParser/x86_operands.s deleted file mode 100644 index 708f1bd..0000000 --- a/test/MC/AsmParser/x86_operands.s +++ /dev/null @@ -1,36 +0,0 @@ -// FIXME: Actually test that we get the expected results. - -// RUN: llvm-mc %s > %t - -# Immediates - push $1 - push $(1+2) - push $a - push $1 + 2 - -# Disambiguation - push 4+4 - push (4+4) - push (4+4)(%eax) - push 8(%eax) - push (%eax) - push (4+4)(,%eax) - -# Indirect Memory Operands - push 1(%eax) - push 1(%eax,%ebx) - push 1(%eax,%ebx,) - push 1(%eax,%ebx,4) - push 1(,%ebx) - push 1(,%ebx,) - push 1(,%ebx,4) - push 1(,%ebx,(2+2)) - -# '*' - call a - call *a - call *%eax - call 4(%eax) # FIXME: Warn or reject. - call *4(%eax) - - |