<div dir="ltr">Hi,all,<br>I've some problem when using clang compile my ARM assembly code:<br><br>1 .qn directive<br>In GAS, .qn directive is used to create typed
and/or indexed register aliases for use in Advanced SIMD Extension
(Neon) instructions.(<a href="http://sourceware.org/binutils/docs/as/ARM-Directives.html#ARM-Directives">http://sourceware.org/binutils/docs/as/ARM-Directives.html#ARM-Directives</a>)<br>But clang's integrated-as seems have different syntax, for example, my code:<br>
<br>input .qn Q6.F32 <br><br>Clang would give error: unexpected token in argument list<br><br>2 .unreq<br>Clang doesn't recognize .unreq,  my code is as below:<br><br>px .req r0<br>.unreq px<br>px .req r1<br><br>clang give error: redefinition of 'px' does not match original.<br>
<br>3 .end<br>clang also doesn't recognize .end directive<br><br>all my code is compiled by: clang -arch armv7 -v -integrated-as -g -mcpu=cortex-a9 -mfpu=neon -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk/<br>
<br>my clang version is: Apple LLVM version 4.2 (clang-425.0.24) (based on LLVM 3.2svn)<br><br>BTW, could any tell me which files implement integrated-as in clang source code, I think it may also help me by looking the source code(I've tried 'grep', but with no success.)<br>
<br>Great Thanks!<br><br>ashi<br></div>