diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/packed_struct.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/packed_struct.ll | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/llvm/test/CodeGen/X86/packed_struct.ll b/llvm/test/CodeGen/X86/packed_struct.ll index aea631896a8..2a781e7e546 100644 --- a/llvm/test/CodeGen/X86/packed_struct.ll +++ b/llvm/test/CodeGen/X86/packed_struct.ll @@ -1,8 +1,9 @@ -; RUN: llvm-as < %s | llc -march=x86 | grep foos+5 -; RUN: llvm-as < %s | llc -march=x86 | grep foos+1 -; RUN: llvm-as < %s | llc -march=x86 | grep foos+9 -; RUN: llvm-as < %s | llc -march=x86 | grep bara+19 -; RUN: llvm-as < %s | llc -march=x86 | grep bara+4 +; RUN: llvm-as < %s | llc -march=x86 > %t +; RUN: grep foos+5 %t +; RUN: grep foos+1 %t +; RUN: grep foos+9 %t +; RUN: grep bara+19 %t +; RUN: grep bara+4 %t ; make sure we compute the correct offset for a packed structure |