From 32be338f60bf5e711380a8f659de2dc945761314 Mon Sep 17 00:00:00 2001 From: Dmitry Babokin Date: Thu, 2 May 2013 00:05:17 +0200 Subject: [PATCH] Minor indentation fix --- builtins.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/builtins.cpp b/builtins.cpp index b8b5ac59..57ce2333 100644 --- a/builtins.cpp +++ b/builtins.cpp @@ -974,7 +974,8 @@ DefineStdlib(SymbolTable *symbolTable, llvm::LLVMContext *ctx, llvm::Module *mod // If the user wants the standard library to be included, parse the // serialized version of the stdlib.ispc file to get its // definitions added. - if (g->target->getISA() == Target::GENERIC&&g->target->getVectorWidth()!=1) { // 1 wide uses x86 stdlib + if (g->target->getISA() == Target::GENERIC && + g->target->getVectorWidth() != 1) { // 1 wide uses x86 stdlib extern char stdlib_generic_code[]; yy_scan_string(stdlib_generic_code); yyparse();