[llvm] r216212 - Satiate the sanitizer build bot

Jonathan Roelofs jonathan at codesourcery.com
Thu Aug 21 13:09:15 PDT 2014


Author: jroelofs
Date: Thu Aug 21 15:09:15 2014
New Revision: 216212

URL: http://llvm.org/viewvc/llvm-project?rev=216212&view=rev
Log:
Satiate the sanitizer build bot

This fixes a missing initializer from r216182

Modified:
    llvm/trunk/include/llvm/Target/TargetOptions.h

Modified: llvm/trunk/include/llvm/Target/TargetOptions.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetOptions.h?rev=216212&r1=216211&r2=216212&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Target/TargetOptions.h (original)
+++ llvm/trunk/include/llvm/Target/TargetOptions.h Thu Aug 21 15:09:15 2014
@@ -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





More information about the llvm-commits mailing list