adds -fseh-exceptions and -fdwarf-exceptions flags
clang will check if the user has specified an exception model flag,
in the absense of specifying the exception model clang will then check
the driver default and append the model flag for that target to cc1
clang cc1 assumes dwarf is the default if none is passed
and -fno-exceptions has a higher priority then specifying the model
move SEH macro definitions out of Targets into InitPreprocessor
behind the -fseh-exceptions flag
move ARM_DWARF_EH macrodefinitions out of verious targets and into
InitPreprocessor behind the -fdwarf-exceptions flag and arm|thumb check
remove unused USESEHExceptions from the MinGW Driver
fold USESjLjExceptions into a new GetExceptionModel function that
gives the toolchain classes more flexibility with eh models.
if a toolchain does not specify the exception model make a best guess based
what llvm does for that triple with the assembler much like cc1as.
"Structured exception handling" is very ambiguous. I would say something like "SEH .xdata exception handling" or something to clarify.