summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-03-03 00:19:58 +0000
committerChris Lattner <sabre@nondot.org>2006-03-03 00:19:58 +0000
commit41edaa0529997e41a2bd64efd5f3e8027c67d99f (patch)
tree714eaf941e2d5d4866e3b9c7f92afdd3ca4f2b78 /include
parent472c0ebea486237b8df386a142a37bbebc28f19d (diff)
downloadllvm-41edaa0529997e41a2bd64efd5f3e8027c67d99f.tar.gz
llvm-41edaa0529997e41a2bd64efd5f3e8027c67d99f.tar.bz2
llvm-41edaa0529997e41a2bd64efd5f3e8027c67d99f.tar.xz
remove the read/write port/io intrinsics.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26479 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/SelectionDAGNodes.h6
-rw-r--r--include/llvm/Intrinsics.h7
2 files changed, 0 insertions, 13 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h
index 7e3b1688ac..02feba7106 100644
--- a/include/llvm/CodeGen/SelectionDAGNodes.h
+++ b/include/llvm/CodeGen/SelectionDAGNodes.h
@@ -379,12 +379,6 @@ namespace ISD {
// register (or other high accuracy low latency clock source)
READCYCLECOUNTER,
- // READPORT, WRITEPORT, READIO, WRITEIO - These correspond to the LLVM
- // intrinsics of the same name. The first operand is a token chain, the
- // other operands match the intrinsic. These produce a token chain in
- // addition to a value (if any).
- READPORT, WRITEPORT, READIO, WRITEIO,
-
// HANDLENODE node - Used as a handle for various purposes.
HANDLENODE,
diff --git a/include/llvm/Intrinsics.h b/include/llvm/Intrinsics.h
index 62c58f0ba7..80e3c6f61a 100644
--- a/include/llvm/Intrinsics.h
+++ b/include/llvm/Intrinsics.h
@@ -86,13 +86,6 @@ namespace Intrinsic {
cttz_i16, // Count trailing zeros of short
cttz_i32, // Count trailing zeros of int
cttz_i64, // Count trailing zeros of long
-
- // Input/Output intrinsics.
- readport,
- writeport,
- readio,
- writeio
-
};
} // End Intrinsic namespace