We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36af335 commit 8a6d075Copy full SHA for 8a6d075
tests/expectations/tests/float128.rs
@@ -4,3 +4,5 @@
4
non_camel_case_types,
5
non_upper_case_globals
6
)]
7
+
8
+pub const global: u128 = 1.0;
tests/headers/float128.hpp
@@ -1,8 +1,4 @@
1
-// FIXME: libclang < 3.9 does not expose `__float128` in its interface, so this
2
-// test will fail. Once we remove support for `--features llvm_stable` and
3
-// require libclang >= 3.9, we can reenable this test.
-//
-// static __float128 global = 1.0;
+static __float128 global = 1.0;
// FIXME: We have no way to get 128 bit aligned structs in Rust at the moment,
// and therefore the generated layout tests for this struct will fail. When we
0 commit comments