Commit 3a2ed724 authored by Tanya Lattner's avatar Tanya Lattner
Browse files

Merge 99762 from mainline.

llvm-svn: 99908
parent 8ab7ded5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ namespace sys {
  /// @brief Memory block abstraction.
  class MemoryBlock {
  public:
    MemoryBlock() { }
    MemoryBlock() : Address(0), Size(0) { }
    MemoryBlock(void *addr, size_t size) : Address(addr), Size(size) { }
    void *base() const { return Address; }
    size_t size() const { return Size; }