Move some llvm_unreachable's from r149849 out of switch statements to satisfy -Wcovered-switch-default

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149860 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Craig Topper
2012-02-06 08:17:43 +00:00
parent d156dc11f9
commit aae875c27c
2 changed files with 3 additions and 3 deletions

View File

@@ -128,8 +128,8 @@ namespace llvm {
Other.Contents.Order.isNormalMemory &&
Contents.Order.isMustAlias == Other.Contents.Order.isMustAlias &&
Contents.Order.isArtificial == Other.Contents.Order.isArtificial;
default: llvm_unreachable("Invalid dependency kind!");
}
llvm_unreachable("Invalid dependency kind!");
}
bool operator!=(const SDep &Other) const {