diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-10-13 17:38:00 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-10-13 17:38:00 +0000 |
commit | 28b4b9015e915957a1cc81be09d40fd0a73f89ac (patch) | |
tree | 717b7c628d8678eb7f6768d3209852e24456945d | |
parent | 2378c5e230c08c5dcb31a67c09ecb82e7f43140e (diff) | |
download | bcm5719-llvm-28b4b9015e915957a1cc81be09d40fd0a73f89ac.tar.gz bcm5719-llvm-28b4b9015e915957a1cc81be09d40fd0a73f89ac.zip |
X86: Depending on the local semantics of .align this test can also emit a nopl instead of nopw.
llvm-svn: 165880
-rw-r--r-- | llvm/test/MC/X86/x86_nop.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/MC/X86/x86_nop.s b/llvm/test/MC/X86/x86_nop.s index 23291591bdd..396e3022ebe 100644 --- a/llvm/test/MC/X86/x86_nop.s +++ b/llvm/test/MC/X86/x86_nop.s @@ -7,7 +7,7 @@ # RUN: llvm-mc -filetype=obj -arch=x86 -mcpu=geode %s | llvm-objdump -d - | FileCheck %s # RUN: llvm-mc -filetype=obj -arch=x86 -mcpu=i686 %s | llvm-objdump -d - | not FileCheck %s -# CHECK-NOT: nopw +# CHECK-NOT: nop{{[lw]}} inc %eax .align 8 inc %eax |