This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 135213

Summary: Support preprocessor in assembler
Product: cnd Reporter: Alexander Simon <alexvsimon>
Component: Code ModelAssignee: issues@cnd <issues>
Status: NEW ---    
Severity: blocker    
Priority: P3    
Version: 6.x   
Hardware: All   
OS: All   
Issue Type: ENHANCEMENT Exception Reporter:
Bug Depends on:    
Bug Blocks: 108501    

Description Alexander Simon 2008-05-16 12:59:00 UTC
Open Solaris contains a lot of assembler files that use preprocessor.
Assembler module do not support preprocessor.
It make unavailable hyper link features.
For example, see file usr/src/lib/libc/i386/gen/memcpy.s
This is a code fragment from the memcpy.s:
------------------------------
#include <sys/asm_linkage.h>

	ANSI_PRAGMA_WEAK(memmove,function)
	ANSI_PRAGMA_WEAK(memcpy,function)

#include "SYS.h"

	ANSI_PRAGMA_WEAK2(_private_memcpy,memcpy,function)

	ENTRY(memcpy)
	movl	%edi,%edx	/ save register variables
	pushl	%esi
------------------------------