Matt Davis | 362ea5f | 2018-07-06 18:03:14 +0000 | [diff] [blame] | 1 | //===------------------------- HardwareUnit.cpp -----------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | /// \file |
| 10 | /// |
| 11 | /// This file defines the anchor for the base class that describes |
| 12 | /// simulated hardware units. |
| 13 | /// |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
| 16 | #include "HardwareUnit.h" |
| 17 | |
| 18 | namespace mca { |
| 19 | |
| 20 | // Pin the vtable with this method. |
| 21 | HardwareUnit::~HardwareUnit() = default; |
| 22 | |
| 23 | } // namespace mca |