diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2007-09-21 15:50:22 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2007-09-21 15:50:22 +0000 |
commit | 4730c049049a430f7c32d3c09c75468f24835c23 (patch) | |
tree | 99e6f9f6f9609cf360fef8ad11d75b0c4c13cecf /llvm/test/CodeGen/X86/byval2.ll | |
parent | 876e27dafa07a371180395410a18c28e73dd9efe (diff) | |
download | bcm5719-llvm-4730c049049a430f7c32d3c09c75468f24835c23.tar.gz bcm5719-llvm-4730c049049a430f7c32d3c09c75468f24835c23.zip |
Don't add a default STACK_ALIGN (use the generic ABI alignment)
Implement calls to functions with byval arguments on X86
llvm-svn: 42192
Diffstat (limited to 'llvm/test/CodeGen/X86/byval2.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/byval2.ll | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/byval2.ll b/llvm/test/CodeGen/X86/byval2.ll index 04d34839c0e..d017aa5fa33 100644 --- a/llvm/test/CodeGen/X86/byval2.ll +++ b/llvm/test/CodeGen/X86/byval2.ll @@ -1,4 +1,5 @@ ; RUN: llvm-as < %s | llc -march=x86-64 | grep rep.movsl | count 2 +; RUN: llvm-as < %s | llc -march=x86 | grep rep.movsl | count 2 %struct.s = type { i64, i64, i64 } |