[PATCH] D44232: [SimplifyCFG] Create attribute to disable select formation.

Vitaly Buka via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 9 10:59:03 PST 2018


vitalybuka added a comment.

LGTM



================
Comment at: llvm/lib/AsmParser/LLParser.cpp:1127
     case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
+    case lltok::kw_no_cfg_select_formation:
+      B.addAttribute(Attribute::NoCFGSelectFormation); break;
----------------
no_cfg_select_formation -> nocfgselectformation ?


https://reviews.llvm.org/D44232





More information about the llvm-commits mailing list