Home | History | Annotate | Line # | Download | only in arm
      1  1.2  matt #	$NetBSD: kmodwrap.awk,v 1.2 2013/08/07 17:29:15 matt Exp $
      2  1.2  matt 
      3  1.2  matt $2 == "*UND*" {
      4  1.2  matt 	undef[$4]=".";
      5  1.2  matt }
      6  1.1  matt 
      7  1.1  matt $2 == "R_ARM_PC24" || $2 == "R_ARM_CALL" || $2 == "R_ARM_JUMP24" {
      8  1.2  matt 	if (x[$3] != "" || undef[$3] != ".")
      9  1.1  matt 		next;
     10  1.1  matt 	printf " --wrap="$3;
     11  1.1  matt 	x[$3]=".";
     12  1.1  matt }
     13