shithub: scc

Download patch

ref: 9be3c2347c94f2d6a1bd5597a52c03aa02f1c535
parent: fd69ae5a010dc48c00b4509ee17163a919a74ea6
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Tue Feb 21 15:36:19 EST 2017

[cc1] Fix cast between pointers and ints

A missing break was causing that casts between pointers and integers
was forbidden.

--- a/cc1/expr.c
+++ b/cc1/expr.c
@@ -279,6 +279,7 @@
 		default:
 			return NULL;
 		}
+		break;
 	default:
 		return NULL;
 	}