Fix typo in two files in Clang, patch by FusionBolt

Reviewed By: xgupta

Differential Revision: https://reviews.llvm.org/D98254
This commit is contained in:
Shivam Gupta 2021-08-31 12:31:24 +05:30
parent 4a6d8a11f8
commit e01ac501af
2 changed files with 3 additions and 3 deletions

View file

@ -67,7 +67,7 @@ private:
/// Runs a function.
bool Run(State &Parent, Function *Func, APValue &Result);
/// Checks a result fromt the interpreter.
/// Checks a result from the interpreter.
bool Check(State &Parent, llvm::Expected<bool> &&R);
private:

View file

@ -38,7 +38,7 @@ namespace interp {
using APInt = llvm::APInt;
using APSInt = llvm::APSInt;
/// Convers a value to an APValue.
/// Convert a value to an APValue.
template <typename T> bool ReturnValue(const T &V, APValue &R) {
R = V.toAPValue();
return true;
@ -50,7 +50,7 @@ bool CheckExtern(InterpState &S, CodePtr OpPC, const Pointer &Ptr);
/// Checks if the array is offsetable.
bool CheckArray(InterpState &S, CodePtr OpPC, const Pointer &Ptr);
/// Checks if a pointer is live and accesible.
/// Checks if a pointer is live and accessible.
bool CheckLive(InterpState &S, CodePtr OpPC, const Pointer &Ptr,
AccessKinds AK);
/// Checks if a pointer is null.