From 4a2fe338ef514b9fdbd8ab98c8b6ec61aa84d4e9 Mon Sep 17 00:00:00 2001 From: Evghenii Date: Tue, 8 Jul 2014 13:10:16 +0200 Subject: [PATCH] fix for cpuFromIsa --- ispc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ispc.cpp b/ispc.cpp index a5834857..8e029502 100644 --- a/ispc.cpp +++ b/ispc.cpp @@ -274,7 +274,7 @@ Target::Target(const char *arch, const char *cpu, const char *isa, bool pic) : this->m_arch = arch; } - const char * cpuFromIsa; + const char * cpuFromIsa = ""; // Check default LLVM generated targets if (!strcasecmp(isa, "sse2") ||