[LLVMbugs] [Bug 8911] VMLA/VMLS codegen error
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Wed Jan 5 12:59:52 PST 2011
http://llvm.org/bugs/show_bug.cgi?id=8911
Bob Wilson <bob.wilson at apple.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|REOPENED |RESOLVED
Resolution| |WORKSFORME
--- Comment #10 from Bob Wilson <bob.wilson at apple.com> 2011-01-05 14:59:51 CST ---
Clang doesn't know what to do with the "armv7-none-eabi" triple that you have
specified. It's warning about that:
clang: warning: unknown platform, assuming -mfloat-abi=soft
The "soft" ABI means that hardware floating-point instructions cannot be used.
Apparently no one has implemented that for vector operations. If you specify
-mfloat-abi=softfp, you'll get what you want.
If you want that triple to be recognized, you'll need to update the
Clang::AddARMTargetArgs() function in lib/Driver/Tools.cpp. I'm going to close
this again, since I don't think we need to keep a bug report open to track
that.
--
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
More information about the llvm-bugs
mailing list