blob: 550500906892b811391f092c8f9d567f97e07845 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// RUN: %clang_cc1 -triple=x86_64-pc-linux-gnu -Wover-aligned -verify %s
// This test verifies that we don't warn when the global operator new is
// overridden. That's why we can't merge this with the other test file.
void* operator new(unsigned long);
void* operator new[](unsigned long);
struct Test {
template <typename T>
struct SeparateCacheLines {
T data;
} __attribute__((aligned(256)));
SeparateCacheLines<int> high_contention_data[10];
};
void helper() {
Test t;
new Test;
new Test[10];
}
|