diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2019-08-23 21:27:56 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2019-08-23 21:27:56 +0000 |
commit | d78b76bc0c980e8f45a280b140a6f623d0e5b50a (patch) | |
tree | fcda5b8338f72f2f053d2a73336492dd15de3d07 | |
parent | 38e38de2eafe4a85d1242ccd0cd7c4a908c4067c (diff) | |
download | compiler-rt-d78b76bc0c980e8f45a280b140a6f623d0e5b50a.tar.gz |
Move a break into the correct place. NFCI.
Should silence new C fallthrough warning.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@369813 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/builtins/cpu_model.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/builtins/cpu_model.c b/lib/builtins/cpu_model.c index 940c5938f..b37fdbacb 100644 --- a/lib/builtins/cpu_model.c +++ b/lib/builtins/cpu_model.c @@ -415,8 +415,8 @@ static void getIntelProcessorTypeAndSubtype(unsigned Family, unsigned Model, default: // Unknown family 6 CPU. break; - break; } + break; default: break; // Unknown. } |