HomeSort by: relevance | last modified time | path
    Searched refs:HasLV (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCall.h 225 bool HasLV;
234 : RV(rv), HasLV(false), IsUsed(false), Ty(ty) {}
236 : LV(lv), HasLV(true), IsUsed(false), Ty(ty) {}
237 bool hasLValue() const { return HasLV; }
245 assert(HasLV && !IsUsed);
249 assert(!HasLV && !IsUsed);
253 assert(!HasLV);
257 bool isAggregate() const { return HasLV || RV.isAggregate(); }
CGCall.cpp 4238 if (!HasLV)
4249 if (!HasLV && RV.isScalar())
4251 else if (!HasLV && RV.isComplex())
4254 auto Addr = HasLV ? LV.getAddress(CGF) : RV.getAggregateAddress();
4258 HasLV ? LV.isVolatileQualified()

Completed in 24 milliseconds