diff options
author | Gabe Black <gabeblack@google.com> | 2019-09-06 15:14:00 -0700 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2019-09-20 17:55:13 +0000 |
commit | 679ed0eec5e563a889b981231864e272c8e22c00 (patch) | |
tree | f591d3bc87e0e2daf2ad42d14495224d86b338bc /src/dev/x86/intdev.cc | |
parent | ab376064bdfa9796eebad5ee8d84c766e7a30bd6 (diff) | |
download | gem5-679ed0eec5e563a889b981231864e272c8e22c00.tar.xz |
dev, x86: Delete the now unused X86 specific interrupt pins/lines.
Change-Id: I3915f0ad673119b551dcc4c5cedec180a9b88735
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/20702
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>
Tested-by: kokoro <noreply+kokoro@google.com>
Diffstat (limited to 'src/dev/x86/intdev.cc')
-rw-r--r-- | src/dev/x86/intdev.cc | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/dev/x86/intdev.cc b/src/dev/x86/intdev.cc index a35f76b5f..e6c068a27 100644 --- a/src/dev/x86/intdev.cc +++ b/src/dev/x86/intdev.cc @@ -70,21 +70,3 @@ X86ISA::IntDevice::init() panic("Int port not connected to anything!"); } } - -X86ISA::IntSourcePin * -X86IntSourcePinParams::create() -{ - return new X86ISA::IntSourcePin(this); -} - -X86ISA::IntSinkPin * -X86IntSinkPinParams::create() -{ - return new X86ISA::IntSinkPin(this); -} - -X86ISA::IntLine * -X86IntLineParams::create() -{ - return new X86ISA::IntLine(this); -} |