1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

Add a missing break statement. NFC.

llvm-svn: 286203
This commit is contained in:
George Burgess IV 2016-11-08 04:01:50 +00:00
parent a9234cb8b1
commit c22f370cad

View File

@ -219,6 +219,7 @@ static bool UpgradeIntrinsicFunction1(Function *F, Function *&NewFn) {
NewFn = nullptr;
return true;
}
break;
case 'x': {
bool IsX86 = Name.startswith("x86.");