reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/CodeGen/CGCall.cpp
 3531   if (!HasLV)
 3542   if (!HasLV && RV.isScalar())
 3544   else if (!HasLV && RV.isComplex())
 3547     auto Addr = HasLV ? LV.getAddress() : RV.getAggregateAddress();
 3551                           HasLV ? LV.isVolatileQualified()
tools/clang/lib/CodeGen/CGCall.h
  235     bool hasLValue() const { return HasLV; }
  243       assert(HasLV && !IsUsed);
  247       assert(!HasLV && !IsUsed);
  251       assert(!HasLV);
  255     bool isAggregate() const { return HasLV || RV.isAggregate(); }