summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Labath <labath@google.com>2015-08-24 14:24:20 +0000
committerPavel Labath <labath@google.com>2015-08-24 14:24:20 +0000
commitd3aaa18e5d2396b3113a279e75b668ef89b5708f (patch)
tree04dcff058a08c0af341c090f5aa591e2b2bf8acc
parent2a1e58d0002b8c5306b280350f8848637dcf2fbe (diff)
downloadbcm5719-llvm-d3aaa18e5d2396b3113a279e75b668ef89b5708f.tar.gz
bcm5719-llvm-d3aaa18e5d2396b3113a279e75b668ef89b5708f.zip
Fix TestCreateDuringInstructionStep on i386
llvm-svn: 245842
-rw-r--r--lldb/test/linux/thread/create_during_instruction_step/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/linux/thread/create_during_instruction_step/main.cpp b/lldb/test/linux/thread/create_during_instruction_step/main.cpp
index 168575e2350..079e8b13798 100644
--- a/lldb/test/linux/thread/create_during_instruction_step/main.cpp
+++ b/lldb/test/linux/thread/create_during_instruction_step/main.cpp
@@ -38,7 +38,7 @@ int main ()
int ret = clone(thread_main,
child_stack + STACK_SIZE/2, // Don't care whether the stack grows up or down,
// just point to the middle
- CLONE_CHILD_CLEARTID | CLONE_FILES | CLONE_FS | CLONE_PARENT_SETTID | CLONE_SETTLS |
+ CLONE_CHILD_CLEARTID | CLONE_FILES | CLONE_FS | CLONE_PARENT_SETTID |
CLONE_SIGHAND | CLONE_SYSVSEM | CLONE_THREAD | CLONE_VM,
nullptr, // thread_main argument
&child_tid);
OpenPOWER on IntegriCloud