diff options
author | Fangrui Song <maskray@google.com> | 2018-07-16 18:51:40 +0000 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2018-07-16 18:51:40 +0000 |
commit | cb0bab86b3f47c82ce415a5e7d12849dbdd58699 (patch) | |
tree | fa3d88a9a60bd01535535cd6d14849a3a3ff2711 /llvm/lib/CodeGen/LiveDebugVariables.cpp | |
parent | b05be5f4b4cc5d426dd8ee7aac8b83556453a766 (diff) | |
download | llvm-cb0bab86b3f47c82ce415a5e7d12849dbdd58699.zip llvm-cb0bab86b3f47c82ce415a5e7d12849dbdd58699.tar.gz llvm-cb0bab86b3f47c82ce415a5e7d12849dbdd58699.tar.bz2 |
[CodeGen] Fix inconsistent declaration parameter name
llvm-svn: 337200
Diffstat (limited to 'llvm/lib/CodeGen/LiveDebugVariables.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveDebugVariables.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveDebugVariables.cpp b/llvm/lib/CodeGen/LiveDebugVariables.cpp index 75527fa..3ff03ec 100644 --- a/llvm/lib/CodeGen/LiveDebugVariables.cpp +++ b/llvm/lib/CodeGen/LiveDebugVariables.cpp @@ -307,7 +307,7 @@ public: /// splitRegister - Replace OldReg ranges with NewRegs ranges where NewRegs is /// live. Returns true if any changes were made. - bool splitRegister(unsigned OldLocNo, ArrayRef<unsigned> NewRegs, + bool splitRegister(unsigned OldReg, ArrayRef<unsigned> NewRegs, LiveIntervals &LIS); /// rewriteLocations - Rewrite virtual register locations according to the |