[PATCH] D131867: [AVR] Do not emit instructions invalid for attiny10
Ben Shi via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 8 00:21:41 PST 2022
benshi001 added inline comments.
================
Comment at: llvm/lib/Target/AVR/AVRInstrInfo.td:327
+def HasNonTinyEncoding : Predicate<"!Subtarget->hasTinyEncoding()">,
+ AssemblerPredicate<(all_of (not FeatureTinyEncoding))>;
+
----------------
Should it be `any_of` rather than `all_of` for `HasNonTinyEncoding` ?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D131867/new/
https://reviews.llvm.org/D131867
More information about the llvm-commits
mailing list