Fix duplicated ARCH_X86_HAVE_SSE* clauses
ARCH_X86_HAVE_SSE* should not have second_arch set, they always apply to x86 regardless of TARGET_ARCH vs. TARGET_2ND_ARCH. Change-Id: I21fa4c88e9c966a7181f3b17c95c06080b678556
This commit is contained in:
parent
6e18ca49f8
commit
8f301d583f
1 changed files with 2 additions and 2 deletions
|
@ -126,8 +126,8 @@ var cpuVariantConditionals = map[string]struct {
|
|||
"mips_rev6": {"ifdef ARCH_MIPS_REV6", "mips", false},
|
||||
"atom": {"ifeq ($(TARGET_ARCH_VARIANT),atom)", "$(TARGET_ARCH)", true},
|
||||
"silvermont": {"ifeq ($(TARGET_ARCH_VARIANT),silvermont)", "$(TARGET_ARCH)", true},
|
||||
"x86_sse3": {"ifeq ($(ARCH_X86_HAVE_SSE3),true)", "x86", true},
|
||||
"x86_sse4": {"ifeq ($(ARCH_X86_HAVE_SSE4),true)", "x86", true},
|
||||
"x86_sse3": {"ifeq ($(ARCH_X86_HAVE_SSE3),true)", "x86", false},
|
||||
"x86_sse4": {"ifeq ($(ARCH_X86_HAVE_SSE4),true)", "x86", false},
|
||||
}
|
||||
|
||||
var hostScopedPropertyConditionals = map[string]string{
|
||||
|
|
Loading…
Reference in a new issue