From f00e7e143ee6b3d1ec1885ed4b9ec36419027e2d Mon Sep 17 00:00:00 2001 From: Jonathan Roelofs Date: Thu, 21 Aug 2014 20:09:15 +0000 Subject: [PATCH] Satiate the sanitizer build bot This fixes a missing initializer from r216182 llvm-svn: 216212 --- llvm/include/llvm/Target/TargetOptions.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llvm/include/llvm/Target/TargetOptions.h b/llvm/include/llvm/Target/TargetOptions.h index 338291465b6e..f7df921a9783 100644 --- a/llvm/include/llvm/Target/TargetOptions.h +++ b/llvm/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