summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen
diff options
context:
space:
mode:
authorSanjoy Das <sanjoy@playingwithpointers.com>2015-05-05 23:06:49 +0000
committerSanjoy Das <sanjoy@playingwithpointers.com>2015-05-05 23:06:49 +0000
commit3fb91c0a0d740a286bab061d50088b9bfd5c1bdf (patch)
tree55b85d9702422ff730ebb021c0cae509d12a3415 /llvm/lib/CodeGen
parente8b9d791c2e80da2349d5c89a0d4ca8c2bcd835d (diff)
downloadbcm5719-llvm-3fb91c0a0d740a286bab061d50088b9bfd5c1bdf.tar.gz
bcm5719-llvm-3fb91c0a0d740a286bab061d50088b9bfd5c1bdf.zip
[StatepointLowering] Rename variable, NFC.
Rename LoweredArgs to LoweredMetaArgs to clarify intent. llvm-svn: 236552
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
index 068eca63053..873887d9630 100644
--- a/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
@@ -582,8 +582,8 @@ void SelectionDAGBuilder::LowerStatepoint(
#endif
// Lower statepoint vmstate and gcstate arguments
- SmallVector<SDValue, 10> LoweredArgs;
- lowerStatepointMetaArgs(LoweredArgs, ISP, *this);
+ SmallVector<SDValue, 10> LoweredMetaArgs;
+ lowerStatepointMetaArgs(LoweredMetaArgs, ISP, *this);
// Get call node, we will replace it later with statepoint
SDNode *CallNode = lowerCallFromStatepoint(ISP, LandingPad, *this);
@@ -632,7 +632,7 @@ void SelectionDAGBuilder::LowerStatepoint(
getCurSDLoc(), MVT::i64));
// Insert all vmstate and gcstate arguments
- Ops.insert(Ops.end(), LoweredArgs.begin(), LoweredArgs.end());
+ Ops.insert(Ops.end(), LoweredMetaArgs.begin(), LoweredMetaArgs.end());
// Add register mask from call node
Ops.push_back(*RegMaskIt);
OpenPOWER on IntegriCloud