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 - Support preprocessor in assembler
Summary: Support preprocessor in assembler
Status: NEW
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Model (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: issues@cnd
URL:
Keywords:
Depends on:
Blocks: 108501
  Show dependency tree
 
Reported: 2008-05-16 12:59 UTC by Alexander Simon
Modified: 2013-07-19 12:52 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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
------------------------------