diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-12-04 01:25:24 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-12-04 01:25:24 +0000 |
commit | 757ae647319c5c58ab772295757d2c13eb6489ba (patch) | |
tree | 5c2f0107f26e73c84217171cc3639cd0e6f75f38 /llvm/test/CodeGen/X86/win32_sret.ll | |
parent | c4c9b3717ae8e903e769d40981619079d29d0dc8 (diff) | |
download | bcm5719-llvm-757ae647319c5c58ab772295757d2c13eb6489ba.tar.gz bcm5719-llvm-757ae647319c5c58ab772295757d2c13eb6489ba.zip |
Add -mcpu=core2 to all llc invocations in this test.
Should fix the atom buildbot.
llvm-svn: 196340
Diffstat (limited to 'llvm/test/CodeGen/X86/win32_sret.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/win32_sret.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/X86/win32_sret.ll b/llvm/test/CodeGen/X86/win32_sret.ll index 527355f85e6..8c413f4481e 100644 --- a/llvm/test/CodeGen/X86/win32_sret.ll +++ b/llvm/test/CodeGen/X86/win32_sret.ll @@ -1,11 +1,11 @@ ; We specify -mcpu explicitly to avoid instruction reordering that happens on ; some setups (e.g., Atom) from affecting the output. ; RUN: llc < %s -mcpu=core2 -mtriple=i686-pc-win32 | FileCheck %s -check-prefix=WIN32 -; RUN: llc < %s -mtriple=i686-pc-mingw32 | FileCheck %s -check-prefix=MINGW_X86 -; RUN: llc < %s -mtriple=i386-pc-linux | FileCheck %s -check-prefix=LINUX +; RUN: llc < %s -mcpu=core2 -mtriple=i686-pc-mingw32 | FileCheck %s -check-prefix=MINGW_X86 +; RUN: llc < %s -mcpu=core2 -mtriple=i386-pc-linux | FileCheck %s -check-prefix=LINUX ; RUN: llc < %s -mcpu=core2 -O0 -mtriple=i686-pc-win32 | FileCheck %s -check-prefix=WIN32 -; RUN: llc < %s -O0 -mtriple=i686-pc-mingw32 | FileCheck %s -check-prefix=MINGW_X86 -; RUN: llc < %s -O0 -mtriple=i386-pc-linux | FileCheck %s -check-prefix=LINUX +; RUN: llc < %s -mcpu=core2 -O0 -mtriple=i686-pc-mingw32 | FileCheck %s -check-prefix=MINGW_X86 +; RUN: llc < %s -mcpu=core2 -O0 -mtriple=i386-pc-linux | FileCheck %s -check-prefix=LINUX ; The SysV ABI used by most Unixes and Mingw on x86 specifies that an sret pointer ; is callee-cleanup. However, in MSVC's cdecl calling convention, sret pointer |