forked from OSchip/llvm-project
Fix uninitialized values and bad enum conversions found by UBSAN.
llvm-svn: 237738
This commit is contained in:
parent
35cb2b28ca
commit
3de417f408
|
@ -57,7 +57,7 @@ void check_enum_types()
|
|||
}
|
||||
|
||||
|
||||
enum enum1 {};
|
||||
enum enum1 { zero = 0, one = 1 };
|
||||
enum enum2 {
|
||||
value = std::numeric_limits<unsigned long>::max()
|
||||
};
|
||||
|
|
|
@ -22,13 +22,13 @@
|
|||
int main()
|
||||
{
|
||||
{
|
||||
std::atomic_flag f;
|
||||
std::atomic_flag f = ATOMIC_FLAG_INIT;
|
||||
f.test_and_set();
|
||||
atomic_flag_clear(&f);
|
||||
assert(f.test_and_set() == 0);
|
||||
}
|
||||
{
|
||||
volatile std::atomic_flag f;
|
||||
volatile std::atomic_flag f = ATOMIC_FLAG_INIT;
|
||||
f.test_and_set();
|
||||
atomic_flag_clear(&f);
|
||||
assert(f.test_and_set() == 0);
|
||||
|
|
|
@ -22,37 +22,37 @@
|
|||
int main()
|
||||
{
|
||||
{
|
||||
std::atomic_flag f;
|
||||
std::atomic_flag f = ATOMIC_FLAG_INIT;
|
||||
f.test_and_set();
|
||||
atomic_flag_clear_explicit(&f, std::memory_order_relaxed);
|
||||
assert(f.test_and_set() == 0);
|
||||
}
|
||||
{
|
||||
std::atomic_flag f;
|
||||
std::atomic_flag f = ATOMIC_FLAG_INIT;
|
||||
f.test_and_set();
|
||||
atomic_flag_clear_explicit(&f, std::memory_order_release);
|
||||
assert(f.test_and_set() == 0);
|
||||
}
|
||||
{
|
||||
std::atomic_flag f;
|
||||
std::atomic_flag f = ATOMIC_FLAG_INIT;
|
||||
f.test_and_set();
|
||||
atomic_flag_clear_explicit(&f, std::memory_order_seq_cst);
|
||||
assert(f.test_and_set() == 0);
|
||||
}
|
||||
{
|
||||
volatile std::atomic_flag f;
|
||||
volatile std::atomic_flag f = ATOMIC_FLAG_INIT;
|
||||
f.test_and_set();
|
||||
atomic_flag_clear_explicit(&f, std::memory_order_relaxed);
|
||||
assert(f.test_and_set() == 0);
|
||||
}
|
||||
{
|
||||
volatile std::atomic_flag f;
|
||||
volatile std::atomic_flag f = ATOMIC_FLAG_INIT;
|
||||
f.test_and_set();
|
||||
atomic_flag_clear_explicit(&f, std::memory_order_release);
|
||||
assert(f.test_and_set() == 0);
|
||||
}
|
||||
{
|
||||
volatile std::atomic_flag f;
|
||||
volatile std::atomic_flag f = ATOMIC_FLAG_INIT;
|
||||
f.test_and_set();
|
||||
atomic_flag_clear_explicit(&f, std::memory_order_seq_cst);
|
||||
assert(f.test_and_set() == 0);
|
||||
|
|
|
@ -22,49 +22,49 @@
|
|||
int main()
|
||||
{
|
||||
{
|
||||
std::atomic_flag f;
|
||||
std::atomic_flag f = ATOMIC_FLAG_INIT;
|
||||
f.test_and_set();
|
||||
f.clear();
|
||||
assert(f.test_and_set() == 0);
|
||||
}
|
||||
{
|
||||
std::atomic_flag f;
|
||||
std::atomic_flag f = ATOMIC_FLAG_INIT;
|
||||
f.test_and_set();
|
||||
f.clear(std::memory_order_relaxed);
|
||||
assert(f.test_and_set() == 0);
|
||||
}
|
||||
{
|
||||
std::atomic_flag f;
|
||||
std::atomic_flag f = ATOMIC_FLAG_INIT;
|
||||
f.test_and_set();
|
||||
f.clear(std::memory_order_release);
|
||||
assert(f.test_and_set() == 0);
|
||||
}
|
||||
{
|
||||
std::atomic_flag f;
|
||||
std::atomic_flag f = ATOMIC_FLAG_INIT;
|
||||
f.test_and_set();
|
||||
f.clear(std::memory_order_seq_cst);
|
||||
assert(f.test_and_set() == 0);
|
||||
}
|
||||
{
|
||||
volatile std::atomic_flag f;
|
||||
volatile std::atomic_flag f = ATOMIC_FLAG_INIT;
|
||||
f.test_and_set();
|
||||
f.clear();
|
||||
assert(f.test_and_set() == 0);
|
||||
}
|
||||
{
|
||||
volatile std::atomic_flag f;
|
||||
volatile std::atomic_flag f = ATOMIC_FLAG_INIT;
|
||||
f.test_and_set();
|
||||
f.clear(std::memory_order_relaxed);
|
||||
assert(f.test_and_set() == 0);
|
||||
}
|
||||
{
|
||||
volatile std::atomic_flag f;
|
||||
volatile std::atomic_flag f = ATOMIC_FLAG_INIT;
|
||||
f.test_and_set();
|
||||
f.clear(std::memory_order_release);
|
||||
assert(f.test_and_set() == 0);
|
||||
}
|
||||
{
|
||||
volatile std::atomic_flag f;
|
||||
volatile std::atomic_flag f = ATOMIC_FLAG_INIT;
|
||||
f.test_and_set();
|
||||
f.clear(std::memory_order_seq_cst);
|
||||
assert(f.test_and_set() == 0);
|
||||
|
|
Loading…
Reference in New Issue