From 44c0cbd2080fce59bffe8b91f4ec44512710f2c5 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Sun, 14 Apr 2019 00:19:03 -0700 Subject: decl: Make signedness of enum types match gcc --- tests/compatible-enum-types.c | 7 ++++--- tests/compatible-enum-types.qbe | 1 + 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'tests') diff --git a/tests/compatible-enum-types.c b/tests/compatible-enum-types.c index e320966..c605e90 100644 --- a/tests/compatible-enum-types.c +++ b/tests/compatible-enum-types.c @@ -1,3 +1,4 @@ -enum E {A = -1, B}; -enum E x; -int x; +enum {A = 1} x; +unsigned x; +enum {B = -1} y; +int y; diff --git a/tests/compatible-enum-types.qbe b/tests/compatible-enum-types.qbe index 7cf0e40..a9a9224 100644 --- a/tests/compatible-enum-types.qbe +++ b/tests/compatible-enum-types.qbe @@ -1 +1,2 @@ export data $x = align 4 { z 4 } +export data $y = align 4 { z 4 } -- cgit v1.2.3