[LLVMbugs] [Bug 18833] ARMAsmParser fails to recognize .req directive alias name in capital letters
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Fri Feb 14 10:09:40 PST 2014
http://llvm.org/bugs/show_bug.cgi?id=18833
Jim Grosbach <grosbach at apple.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution|--- |FIXED
--- Comment #1 from Jim Grosbach <grosbach at apple.com> ---
The name isn't case sensitive.
enkidu: ~/tmp $ cat foo.s
OBJECT .req r2
.thumb
.thumb_func _foo
_foo:
mov r4, OBJECT
mov r4, oBjEcT
enkidu: ~/tmp $ ~/sources/build-llvm/Debug+Asserts/bin/clang -c -arch armv7s
foo.s
enkidu: ~/tmp $ otool -vt foo.o
foo.o:
(__TEXT,__text) section
_foo:
00000000 4614 mov r4, r2
00000002 4614 mov r4, r2
enkidu: ~/tmp $
--
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/20140214/7518e42b/attachment.html>
More information about the llvm-bugs
mailing list