Home
last modified time | relevance | path

Searched refs:OutputExpr (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAsm.cpp324 Expr *OutputExpr = Exprs[i]; in ActOnGCCAsmStmt() local
327 if (CheckNakedParmReference(OutputExpr, *this)) in ActOnGCCAsmStmt()
332 checkExprMemoryConstraintCompat(*this, OutputExpr, Info, false)) in ActOnGCCAsmStmt()
337 if (OutputExpr->getType()->isBitIntType()) in ActOnGCCAsmStmt()
339 Diag(OutputExpr->getBeginLoc(), diag::err_asm_invalid_type) in ActOnGCCAsmStmt()
340 << OutputExpr->getType() << 0 /*Input*/ in ActOnGCCAsmStmt()
341 << OutputExpr->getSourceRange()); in ActOnGCCAsmStmt()
346 if (OutputExpr->isTypeDependent()) in ActOnGCCAsmStmt()
350 OutputExpr->isModifiableLvalue(Context, /*Loc=*/nullptr); in ActOnGCCAsmStmt()
359 const Expr *LVal = OutputExpr->IgnoreParenNoopCasts(Context); in ActOnGCCAsmStmt()
[all …]
H A DTreeTransform.h8643 Expr *OutputExpr = S->getOutputExpr(I); in TransformGCCAsmStmt() local
8644 Result = getDerived().TransformExpr(OutputExpr); in TransformGCCAsmStmt()
8648 ExprsChanged |= Result.get() != OutputExpr; in TransformGCCAsmStmt()