summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-09-19 20:40:21 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-09-19 20:40:21 +0000
commit3fc19bbbbb6b215a7417dfe63c9cb59519bcfde7 (patch)
treedfebc4d6d21283a7d7913b7e137b1cdad0ff3759 /include
parent00564995496df04c76fc0e4e57b77372d0fe86d5 (diff)
downloadllvm-3fc19bbbbb6b215a7417dfe63c9cb59519bcfde7.tar.gz
llvm-3fc19bbbbb6b215a7417dfe63c9cb59519bcfde7.tar.bz2
llvm-3fc19bbbbb6b215a7417dfe63c9cb59519bcfde7.tar.xz
Tabs -> spaces (really?)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82334 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Analysis/DebugInfo.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Analysis/DebugInfo.h b/include/llvm/Analysis/DebugInfo.h
index d61dd51345..ae8cb95c9a 100644
--- a/include/llvm/Analysis/DebugInfo.h
+++ b/include/llvm/Analysis/DebugInfo.h
@@ -145,7 +145,7 @@ namespace llvm {
explicit DICompileUnit(MDNode *N = 0) {
DbgNode = N;
if (DbgNode && !isCompileUnit())
- DbgNode = 0;
+ DbgNode = 0;
}
unsigned getLanguage() const { return getUnsignedField(2); }
@@ -356,7 +356,7 @@ namespace llvm {
explicit DISubprogram(MDNode *N = 0) {
DbgNode = N;
if (DbgNode && !isSubprogram())
- DbgNode = 0;
+ DbgNode = 0;
}
DIDescriptor getContext() const { return getDescriptorField(2); }
@@ -462,7 +462,7 @@ namespace llvm {
explicit DILexicalBlock(MDNode *N = 0) {
DbgNode = N;
if (DbgNode && !isLexicalBlock())
- DbgNode = 0;
+ DbgNode = 0;
}
DIScope getContext() const { return getFieldAs<DIScope>(1); }
@@ -594,7 +594,7 @@ namespace llvm {
/// CreateLocation - Creates a debug info location.
DILocation CreateLocation(unsigned LineNo, unsigned ColumnNo,
- DIScope S, DILocation OrigLoc);
+ DIScope S, DILocation OrigLoc);
/// InsertStopPoint - Create a new llvm.dbg.stoppoint intrinsic invocation,
/// inserting it at the end of the specified basic block.