forked from OSchip/llvm-project
Add missing "break". Thanks to Craig for spotting it.
I'm looking at ways to fix the relevant test so it can catch this sort of mistake. llvm-svn: 168618
This commit is contained in:
parent
b5bb659d50
commit
102dc4e30d
|
@ -1960,6 +1960,7 @@ void X86TargetInfo::getDefaultFeatures(llvm::StringMap<bool> &Features) const {
|
|||
setFeatureEnabled(Features, "lzcnt", true);
|
||||
setFeatureEnabled(Features, "aes", true);
|
||||
setFeatureEnabled(Features, "pclmul", true);
|
||||
break;
|
||||
case CK_BDVER2:
|
||||
setFeatureEnabled(Features, "xop", true);
|
||||
setFeatureEnabled(Features, "lzcnt", true);
|
||||
|
|
Loading…
Reference in New Issue