diff options
author | Bhushan D. Attarde <Bhushan.Attarde@imgtec.com> | 2016-04-11 11:19:37 +0000 |
---|---|---|
committer | Bhushan D. Attarde <Bhushan.Attarde@imgtec.com> | 2016-04-11 11:19:37 +0000 |
commit | 2cab00fb5b6d479894a3c56ce6813afcee8474cc (patch) | |
tree | ca2e732b351451547d5715f3da7769a145247e18 | |
parent | ac0cac3b0d32625e29be2d2eb39e3d79fbfaae6d (diff) | |
download | bcm5719-llvm-2cab00fb5b6d479894a3c56ce6813afcee8474cc.tar.gz bcm5719-llvm-2cab00fb5b6d479894a3c56ce6813afcee8474cc.zip |
Remove unintentional return
llvm-svn: 265931
-rw-r--r-- | lldb/source/Core/ArchSpec.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/source/Core/ArchSpec.cpp b/lldb/source/Core/ArchSpec.cpp index 5ac0479c6c8..6393a31d441 100644 --- a/lldb/source/Core/ArchSpec.cpp +++ b/lldb/source/Core/ArchSpec.cpp @@ -1344,7 +1344,6 @@ cores_match (const ArchSpec::Core core1, const ArchSpec::Core core2, bool try_in { if (core2 == ArchSpec::eCore_mips32el || core2 == ArchSpec::eCore_mips32r6el) return true; - return true; } break; |