You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
588 B

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#include <vector>
struct S {
std::vector<int> l;
S* next;
std::atomic<void*> ptr;
};
class C {
void foo_Bad();
void goo();
S head_;
};
void C::foo_Bad() {
while (1) {
S* t = head_.next;
int x = t->l.size();
void* ptr = t->ptr;
int a[5];
a[10] = 1;
}
}
void C::goo() {
while (1) {
S* t = head_.next;
int x = t->l.size();
void* ptr = t->ptr;
}
}