aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-04-16 16:45:14 -0700
committerMichael Forney <mforney@mforney.org>2019-04-16 17:11:41 -0700
commit07ca02cc2d0a2137433f29186aa838d68ded7e9a (patch)
tree90ba44d32a5e9d67eea54b101c9c9d319889867d /test
parentb41df7f83792799f1a9662b83008ea6f64dc73e1 (diff)
Implement __builtin_types_compatible_p
This is used by util-linux.
Diffstat (limited to 'test')
-rw-r--r--test/builtin-types-compatible-p.c3
-rw-r--r--test/builtin-types-compatible-p.qbe3
2 files changed, 6 insertions, 0 deletions
diff --git a/test/builtin-types-compatible-p.c b/test/builtin-types-compatible-p.c
new file mode 100644
index 0000000..23631ce
--- /dev/null
+++ b/test/builtin-types-compatible-p.c
@@ -0,0 +1,3 @@
+int x = __builtin_types_compatible_p(unsigned, enum {A});
+int y = __builtin_types_compatible_p(const int, int); /* qualifiers are ignored */
+int z = __builtin_types_compatible_p(int *, unsigned *);
diff --git a/test/builtin-types-compatible-p.qbe b/test/builtin-types-compatible-p.qbe
new file mode 100644
index 0000000..cae3e60
--- /dev/null
+++ b/test/builtin-types-compatible-p.qbe
@@ -0,0 +1,3 @@
+export data $x = align 4 { w 1, }
+export data $y = align 4 { w 1, }
+export data $z = align 4 { w 0, }