Remove unused argument.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227539 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2015-01-30 01:41:01 +00:00
parent 7417d92e56
commit f66d626182

View File

@ -529,8 +529,7 @@ SDNode *NVPTXDAGToDAGISel::SelectIntrinsicChain(SDNode *N) {
} }
} }
static unsigned int getCodeAddrSpace(MemSDNode *N, static unsigned int getCodeAddrSpace(MemSDNode *N) {
const NVPTXSubtarget *Subtarget) {
const Value *Src = N->getMemOperand()->getValue(); const Value *Src = N->getMemOperand()->getValue();
if (!Src) if (!Src)
@ -642,7 +641,7 @@ SDNode *NVPTXDAGToDAGISel::SelectLoad(SDNode *N) {
return nullptr; return nullptr;
// Address Space Setting // Address Space Setting
unsigned int codeAddrSpace = getCodeAddrSpace(LD, Subtarget); unsigned int codeAddrSpace = getCodeAddrSpace(LD);
// Volatile Setting // Volatile Setting
// - .volatile is only availalble for .global and .shared // - .volatile is only availalble for .global and .shared
@ -878,7 +877,7 @@ SDNode *NVPTXDAGToDAGISel::SelectLoadVector(SDNode *N) {
return nullptr; return nullptr;
// Address Space Setting // Address Space Setting
unsigned int CodeAddrSpace = getCodeAddrSpace(MemSD, Subtarget); unsigned int CodeAddrSpace = getCodeAddrSpace(MemSD);
// Volatile Setting // Volatile Setting
// - .volatile is only availalble for .global and .shared // - .volatile is only availalble for .global and .shared
@ -2017,7 +2016,7 @@ SDNode *NVPTXDAGToDAGISel::SelectStore(SDNode *N) {
return nullptr; return nullptr;
// Address Space Setting // Address Space Setting
unsigned int codeAddrSpace = getCodeAddrSpace(ST, Subtarget); unsigned int codeAddrSpace = getCodeAddrSpace(ST);
// Volatile Setting // Volatile Setting
// - .volatile is only availalble for .global and .shared // - .volatile is only availalble for .global and .shared
@ -2245,7 +2244,7 @@ SDNode *NVPTXDAGToDAGISel::SelectStoreVector(SDNode *N) {
EVT StoreVT = MemSD->getMemoryVT(); EVT StoreVT = MemSD->getMemoryVT();
// Address Space Setting // Address Space Setting
unsigned CodeAddrSpace = getCodeAddrSpace(MemSD, Subtarget); unsigned CodeAddrSpace = getCodeAddrSpace(MemSD);
if (CodeAddrSpace == NVPTX::PTXLdStInstCode::CONSTANT) { if (CodeAddrSpace == NVPTX::PTXLdStInstCode::CONSTANT) {
report_fatal_error("Cannot store to pointer that points to constant " report_fatal_error("Cannot store to pointer that points to constant "