Fix a couple of typos: specifc->specific.

llvm-svn: 241924
This commit is contained in:
Eric Christopher 2015-07-10 18:25:52 +00:00
parent 5ca0baca4a
commit e6b7cf4787
2 changed files with 2 additions and 2 deletions

View File

@ -1519,7 +1519,7 @@ public:
BuiltinVaListKind getBuiltinVaListKind() const override {
return TargetInfo::CharPtrBuiltinVaList;
}
// PPC64 Linux-specifc ABI options.
// PPC64 Linux-specific ABI options.
bool setABI(const std::string &Name) override {
if (Name == "elfv1" || Name == "elfv1-qpx" || Name == "elfv2") {
ABI = Name;

View File

@ -397,7 +397,7 @@ bool Sema::CheckEquivalentExceptionSpec(const PartialDiagnostic &DiagID,
// - both are dynamic-exception-specifications that have the same set of
// adjusted types.
//
// C++0x [except.spec]p12: An exception-specifcation is non-throwing if it is
// C++0x [except.spec]p12: An exception-specification is non-throwing if it is
// of the form throw(), noexcept, or noexcept(constant-expression) where the
// constant-expression yields true.
//