From 4eb3142b43ff124c25cf21d35c6259e8f03c091e Mon Sep 17 00:00:00 2001 From: Greg Bedwell Date: Tue, 29 Oct 2019 12:32:01 +0000 Subject: [PATCH] Fix a spelling mistake in a comment. NFC (I'm currently trying to debug a strange error message I get when pushing to github, despite the pushes being successful). --- lib/Target/X86/X86IndirectBranchTracking.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/X86/X86IndirectBranchTracking.cpp b/lib/Target/X86/X86IndirectBranchTracking.cpp index cc0f59ab329..be12e298f42 100644 --- a/lib/Target/X86/X86IndirectBranchTracking.cpp +++ b/lib/Target/X86/X86IndirectBranchTracking.cpp @@ -53,7 +53,7 @@ private: /// Endbr opcode for the current machine function. unsigned int EndbrOpcode; - /// Adds a new ENDBR instruction to the begining of the MBB. + /// Adds a new ENDBR instruction to the beginning of the MBB. /// The function will not add it if already exists. /// It will add ENDBR32 or ENDBR64 opcode, depending on the target. /// \returns true if the ENDBR was added and false otherwise.