From 9c0f9be02242c5b0c7c539db18a31cbcf74fcc81 Mon Sep 17 00:00:00 2001 From: Aaron Gutierrez Date: Tue, 9 May 2017 01:46:33 -0400 Subject: [PATCH] remove trailing whitespace --- ispc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ispc.cpp b/ispc.cpp index 49e846ae..6b0ba804 100644 --- a/ispc.cpp +++ b/ispc.cpp @@ -471,7 +471,7 @@ Target::Target(const char *arch, const char *cpu, const char *isa, bool pic, boo m_is32Bit(true), m_cpu(""), m_attributes(""), -#if ISPC_LLVM_VERSION >= ISPC_LLVM_3_3 +#if ISPC_LLVM_VERSION >= ISPC_LLVM_3_3 m_tf_attributes(NULL), #endif m_nativeVectorWidth(-1), @@ -733,7 +733,7 @@ Target::Target(const char *arch, const char *cpu, const char *isa, bool pic, boo else if (!strcasecmp(isa, "generic-16") || !strcasecmp(isa, "generic-x16") || // We treat *-generic-16 as generic-16, but with special name mangling - strstr(isa, "-generic-16") || + strstr(isa, "-generic-16") || strstr(isa, "-generic-x16")) { this->m_isa = Target::GENERIC; if (strstr(isa, "-generic-16") ||