Make a few tests optimization-proof. These tests were failing under -O3 because the optimizer was eliminating the call to new.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@172631 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -35,7 +35,7 @@ int main()
|
||||
std::set_new_handler(new_handler);
|
||||
try
|
||||
{
|
||||
void* vp = operator new[] (std::numeric_limits<std::size_t>::max());
|
||||
void*volatile vp = operator new[] (std::numeric_limits<std::size_t>::max());
|
||||
assert(false);
|
||||
}
|
||||
catch (std::bad_alloc&)
|
||||
|
Reference in New Issue
Block a user