[PATCH] D33721: [ARM] Add support for target("arm") and target("thumb").

Akira Hatanaka via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Sun Jun 4 22:38:29 PDT 2017


ahatanak added inline comments.


================
Comment at: lib/Basic/Targets.cpp:5444
+        Feature = "-thumb-mode";
+      if (Feature.compare("+thumb") == 0)
+        Feature = "+thumb-mode";
----------------
This can be "else if".


https://reviews.llvm.org/D33721





More information about the cfe-commits mailing list