From 3cfd999c339e5c5f7b8ab814aa0d379329a22190 Mon Sep 17 00:00:00 2001 From: Brian Drummond Date: Mon, 2 Dec 2013 16:36:09 +0000 Subject: Temporary fix for 16 bit builds; breaks 32-bit gcc builds (has no effect on mcode) --- ortho/gcc/ortho-lang.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ortho/gcc/ortho-lang.c b/ortho/gcc/ortho-lang.c index ef4c9eed2..e8387fddd 100644 --- a/ortho/gcc/ortho-lang.c +++ b/ortho/gcc/ortho-lang.c @@ -629,7 +629,11 @@ type_for_size (unsigned int precision, int unsignedp) if (precision <= MAX_BITS_PER_WORD) signed_and_unsigned_types[precision][unsignedp] = t; - + else + // Handle larger requests by returning a NULL tree and letting + // the back end default to another approach. + t = NULL_TREE; + return t; } -- cgit v1.2.3