889110dd72
(synch patches using update-patches, no functional changes)
40 lines
1.5 KiB
Plaintext
40 lines
1.5 KiB
Plaintext
$OpenBSD: patch-gcc_gensupport_c,v 1.2 2005/01/03 16:23:48 espie Exp $
|
|
--- gcc/gensupport.c.orig Thu Dec 16 18:31:58 2004
|
|
+++ gcc/gensupport.c Mon Jan 3 15:47:20 2005
|
|
@@ -219,7 +219,7 @@ process_include (rtx desc, int lineno)
|
|
{
|
|
static const char sep[2] = { DIR_SEPARATOR, '\0' };
|
|
|
|
- pathname = concat (stackp->fname, sep, filename, NULL);
|
|
+ pathname = concat (stackp->fname, sep, filename, (void *)0);
|
|
input_file = fopen (pathname, "r");
|
|
if (input_file != NULL)
|
|
goto success;
|
|
@@ -228,7 +228,7 @@ process_include (rtx desc, int lineno)
|
|
}
|
|
|
|
if (base_dir)
|
|
- pathname = concat (base_dir, filename, NULL);
|
|
+ pathname = concat (base_dir, filename, (void *)0);
|
|
else
|
|
pathname = xstrdup (filename);
|
|
input_file = fopen (pathname, "r");
|
|
@@ -317,7 +317,7 @@ process_rtx (rtx desc, int lineno)
|
|
insn condition to create the new split condition. */
|
|
split_cond = XSTR (desc, 4);
|
|
if (split_cond[0] == '&' && split_cond[1] == '&')
|
|
- split_cond = concat (XSTR (desc, 2), split_cond, NULL);
|
|
+ split_cond = concat (XSTR (desc, 2), split_cond, (void *)0);
|
|
XSTR (split, 1) = split_cond;
|
|
XVEC (split, 2) = XVEC (desc, 5);
|
|
XSTR (split, 3) = XSTR (desc, 6);
|
|
@@ -672,7 +672,7 @@ alter_test_for_insn (struct queue_elem *
|
|
if (!insn_test || *insn_test == '\0')
|
|
return ce_test;
|
|
|
|
- return concat ("(", ce_test, ") && (", insn_test, ")", NULL);
|
|
+ return concat ("(", ce_test, ") && (", insn_test, ")", (void *)0);
|
|
}
|
|
|
|
/* Adjust all of the operand numbers in SRC to match the shift they'll
|