From 0cb0ba28983d349395d2d38bdedcd9129ce556c4 Mon Sep 17 00:00:00 2001 From: Galina Kistanova Date: Tue, 23 May 2017 16:56:10 +0000 Subject: [PATCH] Removed fallthrough annotation which does not directly precede switch label. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@303653 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Basic/Targets.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/Basic/Targets.cpp b/lib/Basic/Targets.cpp index 23244f4fa2..a1570e7d94 100644 --- a/lib/Basic/Targets.cpp +++ b/lib/Basic/Targets.cpp @@ -3507,7 +3507,6 @@ void X86TargetInfo::setSSELevel(llvm::StringMap &Features, Features["avx512pf"] = Features["avx512dq"] = Features["avx512bw"] = Features["avx512vl"] = Features["avx512vbmi"] = Features["avx512ifma"] = false; - LLVM_FALLTHROUGH; } } @@ -3574,7 +3573,6 @@ void X86TargetInfo::setXOPLevel(llvm::StringMap &Features, XOPEnum Level, LLVM_FALLTHROUGH; case XOP: Features["xop"] = false; - LLVM_FALLTHROUGH; } } -- 2.50.1