Skip to content

Commit 68a6481

Browse files
committed
[C11] Claim conformance to N1464
That's on the CMPLX macros which Clang supports via __builtin_complex.
1 parent c232137 commit 68a6481

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

clang/test/C/C11/n1464.c

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// RUN: %clang_cc1 -verify %s
2+
// expected-no-diagnostics
3+
4+
/* WG14 N1464: ???
5+
* Creation of complex value
6+
*/
7+
8+
// The paper is about the CMPLX macros, which Clang supports via the
9+
// __builtin_complex builtin function. Test the basic functionality.
10+
_Static_assert(__builtin_complex(5.0, 2.0) == 5.0 + 1.0j * 2.0, "");
11+
_Static_assert(__builtin_complex(5.0f, 2.0f) == 5.0f + 1.0j * 2.0f, "");
12+
_Static_assert(__builtin_complex(5.0L, 2.0L) == 5.0L + 1.0j * 2.0L, "");
13+
14+
// Test the edge case involving NaN or infinity.
15+
#define INF(type) (type)__builtin_inf()
16+
#define NAN(type) (type)__builtin_nan("")
17+
_Static_assert(__builtin_complex(5.0f, INF(float)) != 5.0f + 1.0j * INF(float), "");
18+
_Static_assert(__builtin_complex(5.0, INF(double)) != 5.0 + 1.0j * INF(double), "");
19+
_Static_assert(__builtin_complex(5.0L, INF(long double)) != 5.0L + 1.0j * INF(long double), "");
20+
_Static_assert(__builtin_complex(5.0f, NAN(float)) != 5.0f + 1.0j * NAN(float), "");
21+
_Static_assert(__builtin_complex(5.0, NAN(double)) != 5.0 + 1.0j * NAN(double), "");
22+
_Static_assert(__builtin_complex(5.0L, NAN(long double)) != 5.0L + 1.0j * NAN(long double), "");

clang/www/c_status.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ <h2 id="c11">C11 implementation status</h2>
561561
<tr>
562562
<td>Creation of complex value</td>
563563
<td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1464.htm">N1464</a></td>
564-
<td class="unknown" align="center">Unknown</td>
564+
<td class="full" align="center">Clang 12</td>
565565
</tr>
566566
<tr>
567567
<td>Recommendations for extended identifier characters for C and C++</td>

0 commit comments

Comments
 (0)