[LLVMbugs] [Bug 20426] New: Integrated arm assembler doesn't understand .exitm
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Wed Jul 23 17:33:07 PDT 2014
http://llvm.org/bugs/show_bug.cgi?id=20426
Bug ID: 20426
Summary: Integrated arm assembler doesn't understand .exitm
Product: libraries
Version: trunk
Hardware: PC
OS: All
Status: NEW
Severity: normal
Priority: P
Component: Backend: ARM
Assignee: unassignedbugs at nondot.org
Reporter: nicolasweber at gmx.de
CC: llvmbugs at cs.uiuc.edu
Classification: Unclassified
This works with gcc:
thakis at ubu:~$ cat test.S
.macro sum from=0
.exitm
.long \from
.endm
sum 1
thakis at ubu:~$ arm-linux-gnueabihf-g++ -c test.S
Not with clang:
$ ~/src/llvm-build/bin/clang -target arm-linux-androideabi -c test.S
<instantiation>:1:1: error: unknown directive
.exitm
^
test.S:6:1: note: while in macro instantiation
sum 1
^
This is used in openmax.
--
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20140724/87ce9234/attachment.html>
More information about the llvm-bugs
mailing list