[PATCH] D39148: [COFF] Add support for /WX
Saleem Abdulrasool via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sun Oct 22 13:49:59 PDT 2017
compnerd added inline comments.
================
Comment at: COFF/Options.td:87-88
def force_unresolved : F<"force:unresolved">;
+def WX : F<"WX">, HelpText<"Treat warnings as errors">;
+def WX_no : F<"WX:no">, HelpText<"Don't treat warnings as errors">;
----------------
You should move this down and use the `QB` multiclass instead.
https://reviews.llvm.org/D39148
More information about the llvm-commits
mailing list