diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2011-05-05 22:14:31 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2011-05-05 22:14:31 +0000 |
| commit | ec0a3a0bbfa4245712e8493c2fd090f09e4449e6 (patch) | |
| tree | 5d84eeedffa31eb3cea3e8f69297051b3f861f78 /llvm/include | |
| parent | e3a5ff1508d9feb9a41894d81b3f13291192e7c1 (diff) | |
| download | bcm5719-llvm-ec0a3a0bbfa4245712e8493c2fd090f09e4449e6.tar.gz bcm5719-llvm-ec0a3a0bbfa4245712e8493c2fd090f09e4449e6.zip | |
Remove the DwarfTable enum.
llvm-svn: 130959
Diffstat (limited to 'llvm/include')
| -rw-r--r-- | llvm/include/llvm/MC/MCAsmInfo.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/include/llvm/MC/MCAsmInfo.h b/llvm/include/llvm/MC/MCAsmInfo.h index 2ed5c0a47a2..6800f2029fb 100644 --- a/llvm/include/llvm/MC/MCAsmInfo.h +++ b/llvm/include/llvm/MC/MCAsmInfo.h @@ -29,7 +29,7 @@ namespace llvm { /// 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, DwarfTable, DwarfCFI, SjLj, ARM }; + enum ExceptionsType { None, DwarfCFI, SjLj, ARM }; } class MCAsmInfo { @@ -462,8 +462,7 @@ namespace llvm { } bool isExceptionHandlingDwarf() const { return - (ExceptionsType == ExceptionHandling::DwarfTable || - ExceptionsType == ExceptionHandling::DwarfCFI || + (ExceptionsType == ExceptionHandling::DwarfCFI || ExceptionsType == ExceptionHandling::ARM); } |

