summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2013-09-11 00:36:54 +0000
committerEli Friedman <eli.friedman@gmail.com>2013-09-11 00:36:54 +0000
commit77d7fbb9249158bf78ac9b3eb937282eb2cefa4d (patch)
tree4d33f2fa5dbc52450196271e4f3d312127962528 /llvm/lib/Transforms/Scalar/EarlyCSE.cpp
parent92d649ad61a2c6f7326c1031e966816fb03be622 (diff)
downloadbcm5719-llvm-77d7fbb9249158bf78ac9b3eb937282eb2cefa4d.tar.gz
bcm5719-llvm-77d7fbb9249158bf78ac9b3eb937282eb2cefa4d.zip
Get rid of unused isPodLike definitions.
llvm-svn: 190461
Diffstat (limited to 'llvm/lib/Transforms/Scalar/EarlyCSE.cpp')
-rw-r--r--llvm/lib/Transforms/Scalar/EarlyCSE.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/llvm/lib/Transforms/Scalar/EarlyCSE.cpp b/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
index 3c08634bfe2..5266894bc34 100644
--- a/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
+++ b/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
@@ -72,11 +72,6 @@ namespace {
}
namespace llvm {
-// SimpleValue is POD.
-template<> struct isPodLike<SimpleValue> {
- static const bool value = true;
-};
-
template<> struct DenseMapInfo<SimpleValue> {
static inline SimpleValue getEmptyKey() {
return DenseMapInfo<Instruction*>::getEmptyKey();
@@ -220,11 +215,6 @@ namespace {
}
namespace llvm {
- // CallValue is POD.
- template<> struct isPodLike<CallValue> {
- static const bool value = true;
- };
-
template<> struct DenseMapInfo<CallValue> {
static inline CallValue getEmptyKey() {
return DenseMapInfo<Instruction*>::getEmptyKey();
OpenPOWER on IntegriCloud