[llvm-commits] [llvm] r82334 - /llvm/trunk/include/llvm/Analysis/DebugInfo.h
Daniel Dunbar
daniel at zuster.org
Sat Sep 19 13:40:21 PDT 2009
Author: ddunbar
Date: Sat Sep 19 15:40:21 2009
New Revision: 82334
URL: http://llvm.org/viewvc/llvm-project?rev=82334&view=rev
Log:
Tabs -> spaces (really?)
Modified:
llvm/trunk/include/llvm/Analysis/DebugInfo.h
Modified: llvm/trunk/include/llvm/Analysis/DebugInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/DebugInfo.h?rev=82334&r1=82333&r2=82334&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/DebugInfo.h (original)
+++ llvm/trunk/include/llvm/Analysis/DebugInfo.h Sat Sep 19 15:40:21 2009
@@ -145,7 +145,7 @@
explicit DICompileUnit(MDNode *N = 0) {
DbgNode = N;
if (DbgNode && !isCompileUnit())
- DbgNode = 0;
+ DbgNode = 0;
}
unsigned getLanguage() const { return getUnsignedField(2); }
@@ -356,7 +356,7 @@
explicit DISubprogram(MDNode *N = 0) {
DbgNode = N;
if (DbgNode && !isSubprogram())
- DbgNode = 0;
+ DbgNode = 0;
}
DIDescriptor getContext() const { return getDescriptorField(2); }
@@ -462,7 +462,7 @@
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 @@
/// 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.
More information about the llvm-commits
mailing list