Skip to content

Commit

Permalink
[clang] Remove stray semicolons, fixing GCC warnings. NFC.
Browse files Browse the repository at this point in the history
  • Loading branch information
mstorsjo committed Aug 19, 2020
1 parent af4f40c commit cb6cf18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clang/lib/Basic/TargetID.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ parseTargetIDWithFormatCheckingOnly(llvm::StringRef TargetID,
Features = Splits.second;
}
return Processor;
};
}

llvm::Optional<llvm::StringRef>
parseTargetID(const llvm::Triple &T, llvm::StringRef TargetID,
Expand All @@ -123,7 +123,7 @@ parseTargetID(const llvm::Triple &T, llvm::StringRef TargetID,
return llvm::None;

return Processor;
};
}

// A canonical target ID is a target ID containing a canonical processor name
// and features in alphabetical order.
Expand Down

0 comments on commit cb6cf18

Please sign in to comment.