diff options
author | Jim Laskey <jlaskey@mac.com> | 2005-12-16 22:45:29 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2005-12-16 22:45:29 +0000 |
commit | f5395cee6a24699a016b2e379cf4804b09ce5030 (patch) | |
tree | f3d1e7436810c4ed6e5bcbe66b60cb50ae866724 /lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | |
parent | d9e0ba49a4cf288eee9b58857b92a89f5a141c4b (diff) |
Added source file/line correspondence for dwarf (PowerPC only at this point.)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24748 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 20335fbaa4..e6a0913a9b 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -918,8 +918,8 @@ SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) { if (ConstantStruct *CS = dyn_cast<ConstantStruct>(cunit->getInitializer())) { if (CS->getNumOperands() > 0) { - Ops.push_back(DAG.getString(getStringValue(CS->getOperand(4)))); Ops.push_back(DAG.getString(getStringValue(CS->getOperand(3)))); + Ops.push_back(DAG.getString(getStringValue(CS->getOperand(4)))); } } } |