mstorsjo added inline comments.

================
Comment at: clang/lib/Driver/ToolChains/Clang.cpp:2371
+  return Value == "always" || Value == "never" || Value == "arm" ||
+         Value == "thumb";
+}
----------------
I guess this could be a `StringSwitch<bool>` too if you think that's nicer.


================
Comment at: clang/test/Driver/arm-target-as-mimplicit-it.s:39
 // ALWAYS: "-mllvm" "-arm-implicit-it=always"
+// ALWAYS-NOT: "-arm-implicit-it={{.*}}"
 // NEVER: "-mllvm" "-arm-implicit-it=never"
----------------
This pattern wouldn't detct if there's e.g. `-arm-implicit-it=never 
-arm-implicit-it=always`, but I added test cases that pass 
`-Wa,-mimplicit-it=always` twice, where this check should be able to verify 
that we only output it once.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D102812/new/

https://reviews.llvm.org/D102812

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to