summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Roelofs <jonathan@codesourcery.com>2014-08-21 20:09:15 +0000
committerJonathan Roelofs <jonathan@codesourcery.com>2014-08-21 20:09:15 +0000
commitf00e7e143ee6b3d1ec1885ed4b9ec36419027e2d (patch)
tree9a4b63c63a787990bf59fcfff2c4a5a0c67c9bf8
parent7cebf36a9586f11a02077059c37701f7c020f573 (diff)
downloadbcm5719-llvm-f00e7e143ee6b3d1ec1885ed4b9ec36419027e2d.tar.gz
bcm5719-llvm-f00e7e143ee6b3d1ec1885ed4b9ec36419027e2d.zip
Satiate the sanitizer build bot
This fixes a missing initializer from r216182 llvm-svn: 216212
-rw-r--r--llvm/include/llvm/Target/TargetOptions.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/include/llvm/Target/TargetOptions.h b/llvm/include/llvm/Target/TargetOptions.h
index 338291465b6..f7df921a978 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
OpenPOWER on IntegriCloud