diff mc-macro.c @ 556:ef225b589888 s-dandy-work

s-dandy fix emit_copy register parallel rassign struct init alignment MIPS fregister save
author kono
date Fri, 06 Jan 2006 21:19:13 +0900
parents 293f827ccfb2
children d6ff45d719a5
line wrap: on
line diff
--- a/mc-macro.c	Fri Jan 06 01:16:52 2006 +0900
+++ b/mc-macro.c	Fri Jan 06 21:19:13 2006 +0900
@@ -164,7 +164,8 @@
     if (fp) {
 	p = name; 
     } else {
-	for(pp=include_path; *pp;pp++) {  // "" and <> case
+	// no deferenced on "" and <>?
+	for(pp=include_path; *pp;pp++) {
 	    p = expand_file_name(*pp,name);
 	    if(prev && nameeq(p,prev)) continue;
 	    if ((fp = fopen(p,"r"))) {
@@ -175,7 +176,7 @@
 		    break ;
 	    }
 	}
-        if (!fp && (end=='>'||filep->inc=='>')) {  // <> case only
+        if (!fp /* && (end=='>'||filep->inc=='>') */ ) {  // <> case only
 	    for(pp=l_include_path; *pp;pp++) {
 		p = expand_file_name(*pp,name);
 		if(prev && nameeq(p,prev)) continue;