I recently use Source Insight 4.0 to inspect the source code of Linux kernel, but find that SI cannot parses the comment starting with '#' correctly in x86 assembly file.
As SI doesn't parse the '#' comment, the quotation mark in line 18 make everything after it a multi-line string.
I've viewed SI's document but got little help. Actually I have no idea how to troubleshoot in this case.
I've tried to add a new "Custom Parsing Expression" to x86 Asm Language Properties but failed. The expressions I tried includes:
#.*
#.*$
#(.)*$
They should match all charactors after '#' in a single line. But they all got the same error like: "Regular expression must contain one group." and I don't know which kinds of 'group' does it need.
Thanks for guiding!

