summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCharles Davis <cdavis@mines.edu>2011-05-27 23:47:32 +0000
committerCharles Davis <cdavis@mines.edu>2011-05-27 23:47:32 +0000
commitd652b1368b1e381382951f450e5eeca870d91dd6 (patch)
tree4d4254dc46aa4d98c561029e2da249d2c009e3c4 /include
parentbe64b394317feb8d7bcb732bdfb35e0b286efd4c (diff)
downloadllvm-d652b1368b1e381382951f450e5eeca870d91dd6.tar.gz
llvm-d652b1368b1e381382951f450e5eeca870d91dd6.tar.bz2
llvm-d652b1368b1e381382951f450e5eeca870d91dd6.tar.xz
Stub out support for Win64-style exceptions. Note that this is merely using
the Win64 EH mechanism to implement GCC-style exceptions. LLVM supports hardly anything else at this point! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132234 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/MC/MCAsmInfo.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/MC/MCAsmInfo.h b/include/llvm/MC/MCAsmInfo.h
index 36a2e2db67..cadec1bc68 100644
--- a/include/llvm/MC/MCAsmInfo.h
+++ b/include/llvm/MC/MCAsmInfo.h
@@ -26,12 +26,12 @@ namespace llvm {
class MCSymbol;
class MCContext;
- /// MCAsmInfo - This class is intended to be used as a base class for asm
- /// properties and features specific to the target.
namespace ExceptionHandling {
- enum ExceptionsType { None, DwarfCFI, SjLj, ARM };
+ enum ExceptionsType { None, DwarfCFI, SjLj, ARM, Win64 };
}
+ /// MCAsmInfo - This class is intended to be used as a base class for asm
+ /// properties and features specific to the target.
class MCAsmInfo {
protected:
//===------------------------------------------------------------------===//