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

References

lib/Bitcode/Reader/BitcodeReader.cpp
 4803       if (getValueTypePair(Record, OpNum, NextValueNo, Op, &FullTy) ||
 4804           (OpNum + 4 != Record.size() && OpNum + 5 != Record.size()))
 4804           (OpNum + 4 != Record.size() && OpNum + 5 != Record.size()))
 4811       if (OpNum + 5 == Record.size()) {
 4812         FullTy = getFullyStructuredTypeByID(Record[OpNum++]);
 4820       AtomicOrdering Ordering = getDecodedOrdering(Record[OpNum + 2]);
 4825       if (Ordering != AtomicOrdering::NotAtomic && Record[OpNum] == 0)
 4827       SyncScope::ID SSID = getDecodedSyncScopeID(Record[OpNum + 3]);
 4830       if (Error Err = parseAlignmentValue(Record[OpNum], Align))
 4832       I = new LoadInst(Ty, Op, "", Record[OpNum + 1], Align, Ordering, SSID);