From: Jonathan Roelofs Date: Thu, 21 Aug 2014 20:09:15 +0000 (+0000) Subject: Satiate the sanitizer build bot X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=96c909cc74e41dc26edcad3775b07fe317210821;p=oota-llvm.git Satiate the sanitizer build bot This fixes a missing initializer from r216182 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216212 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Target/TargetOptions.h b/include/llvm/Target/TargetOptions.h index 338291465b6..f7df921a978 100644 --- a/include/llvm/Target/TargetOptions.h +++ b/include/llvm/Target/TargetOptions.h @@ -72,7 +72,8 @@ namespace llvm { CompressDebugSections(false), FunctionSections(false), DataSections(false), TrapUnreachable(false), TrapFuncName(""), FloatABIType(FloatABI::Default), - AllowFPOpFusion(FPOpFusion::Standard), JTType(JumpTable::Single) {} + AllowFPOpFusion(FPOpFusion::Standard), JTType(JumpTable::Single), + ThreadModel(ThreadModel::POSIX) {} /// PrintMachineCode - This flag is enabled when the -print-machineinstrs /// option is specified on the command line, and should enable debugging