Skip to content

Commit 32df6a2

Browse files
committed
address feedback and rebase
1 parent 553119e commit 32df6a2

17 files changed

+18
-18
lines changed

libcxx/test/libcxx/atomics/atomics.types.generic/atomics.types.float/lockfree.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ void test() {
4545
int main(int, char**) {
4646
test<float>();
4747
test<double>();
48-
// https://github.com/llvm/llvm-project/issues/47978
48+
// TODO https://github.com/llvm/llvm-project/issues/47978
4949
// test<long double>();
5050

5151
return 0;

libcxx/test/std/atomics/atomics.types.generic/atomics.types.float/assign.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ void test() {
5656
int main(int, char**) {
5757
test<float>();
5858
test<double>();
59-
// https://github.com/llvm/llvm-project/issues/47978
59+
// TODO https://github.com/llvm/llvm-project/issues/47978
6060
// test<long double>();
6161

6262
return 0;

libcxx/test/std/atomics/atomics.types.generic/atomics.types.float/compare_exchange_strong.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ void test() {
220220
int main(int, char**) {
221221
test<float>();
222222
test<double>();
223-
// https://github.com/llvm/llvm-project/issues/47978
223+
// TODO https://github.com/llvm/llvm-project/issues/47978
224224
// test<long double>();
225225

226226
return 0;

libcxx/test/std/atomics/atomics.types.generic/atomics.types.float/compare_exchange_weak.pass.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ void testBasic(MemoryOrder... memory_order) {
6868
assert(a.load() == T(1.2));
6969

7070
// bug
71-
// https://github.com/llvm/llvm-project/issues/47978
71+
// TODO https://github.com/llvm/llvm-project/issues/47978
7272
if constexpr (!std::same_as<T, long double>) {
7373
assert(expected == T(1.2));
7474
}
@@ -236,7 +236,7 @@ int main(int, char**) {
236236
test<float>();
237237
test<double>();
238238

239-
// https://github.com/llvm/llvm-project/issues/47978
239+
// TODO https://github.com/llvm/llvm-project/issues/47978
240240
// test<long double>();
241241

242242
return 0;

libcxx/test/std/atomics/atomics.types.generic/atomics.types.float/ctor.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ constexpr void testOne() {
5656
constexpr bool test() {
5757
testOne<float>();
5858
testOne<double>();
59-
// https://github.com/llvm/llvm-project/issues/47978
59+
// TODO https://github.com/llvm/llvm-project/issues/47978
6060
// testOne<long double>();
6161
return true;
6262
}

libcxx/test/std/atomics/atomics.types.generic/atomics.types.float/exchange.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ void test() {
6969
int main(int, char**) {
7070
test<float>();
7171
test<double>();
72-
// https://github.com/llvm/llvm-project/issues/47978
72+
// TODO https://github.com/llvm/llvm-project/issues/47978
7373
// test<long double>();
7474

7575
return 0;

libcxx/test/std/atomics/atomics.types.generic/atomics.types.float/fetch_add.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ void test() {
113113
int main(int, char**) {
114114
test<float>();
115115
test<double>();
116-
// https://github.com/llvm/llvm-project/issues/47978
116+
// TODO https://github.com/llvm/llvm-project/issues/47978
117117
// test<long double>();
118118

119119
return 0;

libcxx/test/std/atomics/atomics.types.generic/atomics.types.float/fetch_sub.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ void test() {
114114
int main(int, char**) {
115115
test<float>();
116116
test<double>();
117-
// https://github.com/llvm/llvm-project/issues/47978
117+
// TODO https://github.com/llvm/llvm-project/issues/47978
118118
// test<long double>();
119119

120120
return 0;

libcxx/test/std/atomics/atomics.types.generic/atomics.types.float/load.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ void test() {
132132
int main(int, char**) {
133133
test<float>();
134134
test<double>();
135-
// https://github.com/llvm/llvm-project/issues/47978
135+
// TODO https://github.com/llvm/llvm-project/issues/47978
136136
// test<long double>();
137137

138138
return 0;

libcxx/test/std/atomics/atomics.types.generic/atomics.types.float/lockfree.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ void test() {
5555
int main(int, char**) {
5656
test<float>();
5757
test<double>();
58-
// https://github.com/llvm/llvm-project/issues/47978
58+
// TODO https://github.com/llvm/llvm-project/issues/47978
5959
// test<long double>();
6060

6161
return 0;

libcxx/test/std/atomics/atomics.types.generic/atomics.types.float/notify_all.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ void test() {
9393
int main(int, char**) {
9494
test<float>();
9595
test<double>();
96-
// https://github.com/llvm/llvm-project/issues/47978
96+
// TODO https://github.com/llvm/llvm-project/issues/47978
9797
// test<long double>();
9898

9999
return 0;

libcxx/test/std/atomics/atomics.types.generic/atomics.types.float/notify_one.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ void test() {
7777
int main(int, char**) {
7878
test<float>();
7979
test<double>();
80-
// https://github.com/llvm/llvm-project/issues/47978
80+
// TODO https://github.com/llvm/llvm-project/issues/47978
8181
// test<long double>();
8282

8383
return 0;

libcxx/test/std/atomics/atomics.types.generic/atomics.types.float/operator.float.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ void test() {
5252
int main(int, char**) {
5353
test<float>();
5454
test<double>();
55-
// https://github.com/llvm/llvm-project/issues/47978
55+
// TODO https://github.com/llvm/llvm-project/issues/47978
5656
// test<long double>();
5757

5858
return 0;

libcxx/test/std/atomics/atomics.types.generic/atomics.types.float/operator.minus_equals.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ void test() {
9696
int main(int, char**) {
9797
test<float>();
9898
test<double>();
99-
// https://github.com/llvm/llvm-project/issues/47978
99+
// TODO https://github.com/llvm/llvm-project/issues/47978
100100
// test<long double>();
101101

102102
return 0;

libcxx/test/std/atomics/atomics.types.generic/atomics.types.float/operator.plus_equals.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ void test() {
9696
int main(int, char**) {
9797
test<float>();
9898
test<double>();
99-
// https://github.com/llvm/llvm-project/issues/47978
99+
// TODO https://github.com/llvm/llvm-project/issues/47978
100100
// test<long double>();
101101

102102
return 0;

libcxx/test/std/atomics/atomics.types.generic/atomics.types.float/store.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ void test() {
107107
int main(int, char**) {
108108
test<float>();
109109
test<double>();
110-
// https://github.com/llvm/llvm-project/issues/47978
110+
// TODO https://github.com/llvm/llvm-project/issues/47978
111111
// test<long double>();
112112

113113
return 0;

libcxx/test/std/atomics/atomics.types.generic/atomics.types.float/wait.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ void test() {
117117
int main(int, char**) {
118118
test<float>();
119119
test<double>();
120-
// https://github.com/llvm/llvm-project/issues/47978
120+
// TODO https://github.com/llvm/llvm-project/issues/47978
121121
// test<long double>();
122122

123123
return 0;

0 commit comments

Comments
 (0)