hotspot/src/share/vm/adlc/archDesc.cpp
changeset 22240 ec02eda6b9b6
parent 22234 da823d78ad65
child 22872 b6902ee5bc8d
--- a/hotspot/src/share/vm/adlc/archDesc.cpp	Tue Jan 07 16:02:10 2014 +0100
+++ b/hotspot/src/share/vm/adlc/archDesc.cpp	Tue Jan 07 14:26:12 2014 -0800
@@ -43,32 +43,6 @@
   return result;
 }
 
-// Utilities to characterize effect statements
-static bool is_def(int usedef) {
-  switch(usedef) {
-  case Component::DEF:
-  case Component::USE_DEF: return true; break;
-  }
-  return false;
-}
-
-static bool is_use(int usedef) {
-  switch(usedef) {
-  case Component::USE:
-  case Component::USE_DEF:
-  case Component::USE_KILL: return true; break;
-  }
-  return false;
-}
-
-static bool is_kill(int usedef) {
-  switch(usedef) {
-  case Component::KILL:
-  case Component::USE_KILL: return true; break;
-  }
-  return false;
-}
-
 //---------------------------ChainList Methods-------------------------------
 ChainList::ChainList() {
 }