Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 655140
Collapse All | Expand All

(-)a/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h (-3 / +2 lines)
Lines 713-720 private: Link Here
713
713
714
  uint32_t getTrampolineSize() const { return RemoteTrampolineSize; }
714
  uint32_t getTrampolineSize() const { return RemoteTrampolineSize; }
715
715
716
  Expected<std::vector<char>> readMem(char *Dst, JITTargetAddress Src,
716
  Expected<std::vector<uint8_t>> readMem(char *Dst, JITTargetAddress Src,
717
                                      uint64_t Size) {
717
                                         uint64_t Size) {
718
    // Check for an 'out-of-band' error, e.g. from an MM destructor.
718
    // Check for an 'out-of-band' error, e.g. from an MM destructor.
719
    if (ExistingError)
719
    if (ExistingError)
720
      return std::move(ExistingError);
720
      return std::move(ExistingError);
721
- 

Return to bug 655140