diff options
Diffstat (limited to 'include/clang/Driver/CC1AsOptions.td')
-rw-r--r-- | include/clang/Driver/CC1AsOptions.td | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/clang/Driver/CC1AsOptions.td b/include/clang/Driver/CC1AsOptions.td index b1067b788983..37ba6027e207 100644 --- a/include/clang/Driver/CC1AsOptions.td +++ b/include/clang/Driver/CC1AsOptions.td @@ -20,6 +20,10 @@ include "OptParser.td" def triple : Separate<"-triple">, HelpText<"Specify target triple (e.g. x86_64-pc-linux-gnu)">; +def target_cpu : Separate<"-target-cpu">, + HelpText<"Target a specific cpu type">; +def target_feature : Separate<"-target-feature">, + HelpText<"Target specific attributes">; //===----------------------------------------------------------------------===// // Language Options @@ -80,3 +84,8 @@ def no_exec_stack : Flag<"--noexecstack">, def fatal_warnings : Flag<"--fatal-warnings">, HelpText<"Consider warnings as errors">; + +def g : Flag<"-g">, HelpText<"Generate source level debug information">; + +def dwarf_debug_flags : Separate<"-dwarf-debug-flags">, + HelpText<"The string to embed in the Dwarf debug flags record.">; |