Skip to content

Commit

Permalink
Merge branch 'capstone-engine:next' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
RainRat committed Jun 13, 2024
2 parents d7b8531 + 26fd839 commit c5ecdec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ class MachineBasicBlock
/// \c SkipPseudoOp should be true when it's used in optimizations that
/// unlikely hurt profile quality, e.g., without block merging. The default
/// value of \c SkipPseudoOp is set to true to maximize code quality in
/// general, with an explicit false value passed in in a few places like branch
/// general, with an explicit false value passed in a few places like branch
/// folding and if-conversion to favor profile quality.
iterator getFirstNonDebugInstr(bool SkipPseudoOp = true);
const_iterator getFirstNonDebugInstr(bool SkipPseudoOp = true) const {
Expand All @@ -809,7 +809,7 @@ class MachineBasicBlock
/// \c SkipPseudoOp should be true when it's used in optimizations that
/// unlikely hurt profile quality, e.g., without block merging. The default
/// value of \c SkipPseudoOp is set to true to maximize code quality in
/// general, with an explicit false value passed in in a few places like branch
/// general, with an explicit false value passed in a few places like branch
/// folding and if-conversion to favor profile quality.
iterator getLastNonDebugInstr(bool SkipPseudoOp = true);
const_iterator getLastNonDebugInstr(bool SkipPseudoOp = true) const {
Expand Down
2 changes: 1 addition & 1 deletion suite/synctools/tablegen/include/llvm/IR/AutoUpgrade.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ namespace llvm {
/// so that it can update all calls to the old function.
void UpgradeCallsToIntrinsic(Function* F);

/// This checks for global variables which should be upgraded. It it requires
/// This checks for global variables which should be upgraded. It is requires
/// upgrading, returns a pointer to the upgraded variable.
GlobalVariable *UpgradeGlobalVariable(GlobalVariable *GV);

Expand Down

0 comments on commit c5ecdec

Please sign in to comment.