aboutsummaryrefslogtreecommitdiffstats
path: root/lib/IR/DIBuilder.cpp
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2013-03-20 06:27:06 +0000
committerDavid Blaikie <dblaikie@gmail.com>2013-03-20 06:27:06 +0000
commit4cf132fccd8338f9aab4bd34a2f0108a13f46d6c (patch)
treec1c3515b2c9bdc9bb0f8f3f7fdb5f171e0e99845 /lib/IR/DIBuilder.cpp
parentd73795f07eb0432db1fa3ee29c917a6018a44060 (diff)
downloadexternal_llvm-4cf132fccd8338f9aab4bd34a2f0108a13f46d6c.zip
external_llvm-4cf132fccd8338f9aab4bd34a2f0108a13f46d6c.tar.gz
external_llvm-4cf132fccd8338f9aab4bd34a2f0108a13f46d6c.tar.bz2
Reorder the DIFile parameter in DINameSpace
Moving the DIFile parameter to immediately proceed the tag so that it will be a common prefix with other DIScopes (once the DIFile is replaced with the raw file/directory pair). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177492 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/IR/DIBuilder.cpp')
-rw-r--r--lib/IR/DIBuilder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/IR/DIBuilder.cpp b/lib/IR/DIBuilder.cpp
index f435bba..48238e9 100644
--- a/lib/IR/DIBuilder.cpp
+++ b/lib/IR/DIBuilder.cpp
@@ -975,9 +975,9 @@ DINameSpace DIBuilder::createNameSpace(DIDescriptor Scope, StringRef Name,
DIFile File, unsigned LineNo) {
Value *Elts[] = {
GetTagConstant(VMContext, dwarf::DW_TAG_namespace),
+ File,
getNonCompileUnitScope(Scope),
MDString::get(VMContext, Name),
- File,
ConstantInt::get(Type::getInt32Ty(VMContext), LineNo)
};
DINameSpace R(MDNode::get(VMContext, Elts));