[llvm] r187666 - [ARMv8] Add an assembler warning for the deprecated 'setend' instruction.
Dan Gohman
dan433584 at gmail.com
Fri Aug 2 12:59:15 PDT 2013
Hello,
On Fri, Aug 2, 2013 at 12:18 PM, Joey Gouly <joey.gouly at arm.com> wrote:
>
> +bool ARMAsmParser::isDeprecated(MCInst &Inst, StringRef &Info) {
> + if (hasV8Ops() && Inst.getOpcode() == ARM::SETEND) {
> + Info = "armv8";
> + return true;
> + }
> +}
>
This is missing a return statement at the end of the function.
Dan
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20130802/ffddf145/attachment.html>
More information about the llvm-commits
mailing list