File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -3127,9 +3127,7 @@ class CallExpr : public Expr {
3127
3127
// / Bluntly set a new number of arguments without doing any checks whatsoever.
3128
3128
// / Only used during construction of a CallExpr in a few places in Sema.
3129
3129
// / FIXME: Find a way to remove it.
3130
- void setNumArgsUnsafe (unsigned NewNumArgs) {
3131
- NumArgs = NewNumArgs;
3132
- }
3130
+ void setNumArgsUnsafe (unsigned NewNumArgs) { NumArgs = NewNumArgs; }
3133
3131
3134
3132
typedef ExprIterator arg_iterator;
3135
3133
typedef ConstExprIterator const_arg_iterator;
@@ -4626,7 +4624,8 @@ class ShuffleVectorExpr : public Expr {
4626
4624
void setExprs (const ASTContext &C, ArrayRef<Expr *> Exprs);
4627
4625
4628
4626
llvm::APSInt getShuffleMaskIdx (unsigned N) const {
4629
- assert ((N < ShuffleVectorExprBits.NumExprs - 2 ) && " Shuffle idx out of range!" );
4627
+ assert ((N < ShuffleVectorExprBits.NumExprs - 2 ) &&
4628
+ " Shuffle idx out of range!" );
4630
4629
assert (isa<ConstantExpr>(getExpr (N + 2 )) &&
4631
4630
" Index expression must be a ConstantExpr" );
4632
4631
return cast<ConstantExpr>(getExpr (N + 2 ))->getAPValueResult ().getInt ();
Original file line number Diff line number Diff line change @@ -765,7 +765,7 @@ class alignas(void *) Stmt {
765
765
766
766
LLVM_PREFERRED_TYPE (ExprBitfields)
767
767
unsigned : NumExprBits;
768
-
768
+
769
769
LLVM_PREFERRED_TYPE (bool )
770
770
bool CondIsTrue : 1 ;
771
771
};
You can’t perform that action at this time.
0 commit comments