diff options
author | Michael Liao <michael.liao@intel.com> | 2013-06-21 20:22:45 +0000 |
---|---|---|
committer | Michael Liao <michael.liao@intel.com> | 2013-06-21 20:22:45 +0000 |
commit | 72d59c7999c4ed2c37334d2db189efa37d406379 (patch) | |
tree | 93248e7315e64f1deed0be9830ead0cf819fe7c9 /test/CodeGen | |
parent | b47aceaf068352eebf4da87a647363b2317f0f22 (diff) | |
download | external_llvm-72d59c7999c4ed2c37334d2db189efa37d406379.zip external_llvm-72d59c7999c4ed2c37334d2db189efa37d406379.tar.gz external_llvm-72d59c7999c4ed2c37334d2db189efa37d406379.tar.bz2 |
Add '-mcpu=' to prevent breaking on ATOM due to different code schedule
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184591 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r-- | test/CodeGen/X86/pr16360.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/pr16360.ll b/test/CodeGen/X86/pr16360.ll index 247d510..1f73a4d 100644 --- a/test/CodeGen/X86/pr16360.ll +++ b/test/CodeGen/X86/pr16360.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -mtriple=i686-pc-linux | FileCheck %s +; RUN: llc < %s -mcpu=pentium4 -mtriple=i686-pc-linux | FileCheck %s define i64 @foo(i32 %sum) { entry: |