diff options
| author | Ahmed Bougacha <ahmed.bougacha@gmail.com> | 2016-11-16 22:25:03 +0000 |
|---|---|---|
| committer | Ahmed Bougacha <ahmed.bougacha@gmail.com> | 2016-11-16 22:25:03 +0000 |
| commit | bd6ce9a2471756c29ae7a8e6c9d2377bdfd8c778 (patch) | |
| tree | f777b7a6ee9bd8c48a5f08cde8a98463504f7b13 /llvm/lib/CodeGen/SelectionDAG/FastISel.cpp | |
| parent | 996961a4615e2ffaadc43a72e2c357f3352d2ae4 (diff) | |
| download | bcm5719-llvm-bd6ce9a2471756c29ae7a8e6c9d2377bdfd8c778.tar.gz bcm5719-llvm-bd6ce9a2471756c29ae7a8e6c9d2377bdfd8c778.zip | |
[CodeGen] Pass references, not pointers, to MMI helpers. NFC.
While there, rename them to follow the coding style.
llvm-svn: 287169
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/FastISel.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/FastISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp index 452bb059494..cf5803b3587 100644 --- a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp @@ -1066,7 +1066,7 @@ bool FastISel::selectCall(const User *I) { } MachineModuleInfo &MMI = FuncInfo.MF->getMMI(); - ComputeUsesVAFloatArgument(*Call, &MMI); + computeUsesVAFloatArgument(*Call, MMI); // Handle intrinsic function calls. if (const auto *II = dyn_cast<IntrinsicInst>(Call)) |

