diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-02-21 11:56:42 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-02-21 11:56:42 +0000 |
commit | c664fdbd4a9115988e79b27886fc8a6bff110d42 (patch) | |
tree | 1d27efd965100c7025de64ddc8ce65065b8b7c7c | |
parent | af3cf11fecdde9f55a4202ed255e8b38985f5a34 (diff) | |
download | bcm5719-llvm-c664fdbd4a9115988e79b27886fc8a6bff110d42.tar.gz bcm5719-llvm-c664fdbd4a9115988e79b27886fc8a6bff110d42.zip |
test/CodeGen/X86/2012-02-20-MachineCPBug.ll: Fix on generic(non-x86) hosts to add -mattr=+sse.
llvm-svn: 151053
-rw-r--r-- | llvm/test/CodeGen/X86/2012-02-20-MachineCPBug.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/2012-02-20-MachineCPBug.ll b/llvm/test/CodeGen/X86/2012-02-20-MachineCPBug.ll index 58569833df0..3013f162d24 100644 --- a/llvm/test/CodeGen/X86/2012-02-20-MachineCPBug.ll +++ b/llvm/test/CodeGen/X86/2012-02-20-MachineCPBug.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -mtriple=i386-apple-macosx | FileCheck %s +; RUN: llc < %s -mtriple=i386-apple-macosx -mattr=+sse | FileCheck %s ; PR11940: Do not optimize away movb %al, %ch %struct.APInt = type { i64* } |