From 995b551ae74ba41a964a1f73d08c32b4f6e6baef Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Sun, 5 Jul 2015 19:06:32 +0000 Subject: [PATCH] [X86][SSE3] Just use an explicit SSE3 target attribute - not a cpu type. Merged arch/target into a specific triple - we had i686 and x86_64 targets overriding each other.... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@241410 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/sse3.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CodeGen/X86/sse3.ll b/test/CodeGen/X86/sse3.ll index c1cd91beaf5..398675276c6 100644 --- a/test/CodeGen/X86/sse3.ll +++ b/test/CodeGen/X86/sse3.ll @@ -1,6 +1,6 @@ ; These are tests for SSE3 codegen. -; RUN: llc < %s -march=x86-64 -mcpu=nocona -mtriple=i686-apple-darwin9 -O3 | FileCheck %s --check-prefix=X64 +; RUN: llc < %s -mtriple=x86_64-apple-darwin9 --mattr=+sse3 | FileCheck %s --check-prefix=X64 ; Test for v8xi16 lowering where we extract the first element of the vector and ; placed it in the second element of the result. -- 2.34.1