From da76396c75385d2e70c7d3093082867db90e77dc Mon Sep 17 00:00:00 2001 From: Matt Pharr Date: Sat, 27 Aug 2011 08:59:25 -0700 Subject: [PATCH] Fix typo in SSE2 attributes string. --- ispc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ispc.cpp b/ispc.cpp index b6adf43a..43e047fd 100644 --- a/ispc.cpp +++ b/ispc.cpp @@ -126,7 +126,7 @@ Target::GetTarget(const char *arch, const char *cpu, const char *isa, t->isa = Target::SSE2; t->nativeVectorWidth = 4; t->vectorWidth = 4; - t->attributes = "-sse2,-sse41,-sse42,-sse4a,-ssse3,-popcnt"; + t->attributes = "+sse,+sse2,-sse3,-sse41,-sse42,-sse4a,-ssse3,-popcnt"; } else if (!strcasecmp(isa, "sse4")) { t->isa = Target::SSE4;