diff options
author | Dan Gohman <gohman@apple.com> | 2010-04-20 00:48:35 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-04-20 00:48:35 +0000 |
commit | 550184afe7e057c65a8d498c81b629cca7def656 (patch) | |
tree | 684d0f201d34df6e4c12aa63b2cd7eb4680a8926 /include | |
parent | 01b08ae91fadf6c9b9428e15fe80cd3d900d3bf2 (diff) | |
download | external_llvm-550184afe7e057c65a8d498c81b629cca7def656.zip external_llvm-550184afe7e057c65a8d498c81b629cca7def656.tar.gz external_llvm-550184afe7e057c65a8d498c81b629cca7def656.tar.bz2 |
Sink DebugLoc handling out of SelectionDAGISel into FastISel and
SelectionDAGBuilder, where it doesn't have to be as complicated.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101848 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/CodeGen/FastISel.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/llvm/CodeGen/FastISel.h b/include/llvm/CodeGen/FastISel.h index 2e9a3dd..202efe2 100644 --- a/include/llvm/CodeGen/FastISel.h +++ b/include/llvm/CodeGen/FastISel.h @@ -75,11 +75,6 @@ public: MBB = mbb; } - /// setCurDebugLoc - Set the current debug location information, which is used - /// when creating a machine instruction. - /// - void setCurDebugLoc(DebugLoc dl) { DL = dl; } - /// getCurDebugLoc() - Return current debug location information. DebugLoc getCurDebugLoc() const { return DL; } |