Module Name:    src
Committed By:   rillig
Date:           Tue Jul 20 18:43:06 UTC 2021

Modified Files:
        src/usr.bin/xlint/arch/aarch64: targparam.h

Log Message:
lint: make char unsigned on aarch64

This fixes tests msg_074 and msg_076, which previously warned for
'\xff': conversion of 'int' to 'char' is out of range [119]

The commit from 2014-08-10 that first defined char as signed had the
remark "Enough for a distribution build".  At that time, there was no
unit test for lint1 that would have detected the signedness of char.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/usr.bin/xlint/arch/aarch64/targparam.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/xlint/arch/aarch64/targparam.h
diff -u src/usr.bin/xlint/arch/aarch64/targparam.h:1.5 src/usr.bin/xlint/arch/aarch64/targparam.h:1.6
--- src/usr.bin/xlint/arch/aarch64/targparam.h:1.5	Sun Jun 27 08:43:46 2021
+++ src/usr.bin/xlint/arch/aarch64/targparam.h	Tue Jul 20 18:43:06 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: targparam.h,v 1.5 2021/06/27 08:43:46 rillig Exp $ */
+/* $NetBSD: targparam.h,v 1.6 2021/07/20 18:43:06 rillig Exp $ */
 
 /*-
  * Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
 /*
  * Machine-dependent target parameters for lint1.
  */
-#include "schar.h"
+#include "uchar.h"
 #include "lp64.h"
 
 /*

Reply via email to