R600: Remove unused Outputs variable
authorVincent Lejeune <vljn@ovi.com>
Wed, 13 Mar 2013 20:13:25 +0000 (20:13 +0000)
committerVincent Lejeune <vljn@ovi.com>
Wed, 13 Mar 2013 20:13:25 +0000 (20:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176967 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/R600/R600MachineFunctionInfo.cpp
lib/Target/R600/R600MachineFunctionInfo.h

index 40aec833ea5bd9a118b45d7bd3808749716395b4..b07a585f083169e9c40455294463719055b65c6b 100644 (file)
@@ -14,5 +14,4 @@ using namespace llvm;
 
 R600MachineFunctionInfo::R600MachineFunctionInfo(const MachineFunction &MF)
   : MachineFunctionInfo() {
-    memset(Outputs, 0, sizeof(Outputs));
   }
index 4b901f4bbc34859c479228bde392dbf3fb3b8038..13a46b8eec0a4568c3318fcb03c01ecc2acdeaa8 100644 (file)
@@ -26,7 +26,6 @@ public:
   R600MachineFunctionInfo(const MachineFunction &MF);
   SmallVector<unsigned, 4> LiveOuts;
   std::vector<unsigned> IndirectRegs;
-  SDNode *Outputs[16];
 };
 
 } // End llvm namespace