]> granicus.if.org Git - clang/commitdiff
Debug info: Initialize runtime language field correctly for Objective-C
authorDaniel Dunbar <daniel@zuster.org>
Mon, 18 May 2009 20:51:58 +0000 (20:51 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Mon, 18 May 2009 20:51:58 +0000 (20:51 +0000)
interface types.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72036 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGDebugInfo.cpp
test/CodeGenObjC/debug-info.m

index c871b7bcd5fc2652f09038ea80eb350fc7a2f84f..382b18664806f3d9de9a3650b8ad365bee6f668d 100644 (file)
@@ -519,7 +519,7 @@ llvm::DIType CGDebugInfo::CreateType(const ObjCInterfaceType *Ty,
   unsigned Line = PLoc.isInvalid() ? 0 : PLoc.getLine();
 
   
-  unsigned RuntimeLang = DefUnit.getRunTimeVersion();
+  unsigned RuntimeLang = DefUnit.getLanguage();
 
   // To handle recursive interface, we
   // first generate a debug descriptor for the struct as a forward declaration.
index c4b9426145794967e56f44c689abd488c2581524..9c461ba68fb4c744e41ff9c6550a7a3733d5645e 100644 (file)
@@ -2,9 +2,17 @@
 // RUN: grep '@.str3 = internal constant \[8 x i8\] c"-\[A m0\]\\00"' %t &&
 // RUN: grep '@.str4 = internal constant \[9 x i8\] c"\\01-\[A m0\]\\00"' %t &&
 // RUN: grep '@llvm.dbg.subprogram = .* @.str3, .* @.str3, .* @.str4,' %t &&
+// RUN: grep '@llvm.dbg.composite.* = .* i32 15, i64 0, i64 8, .* i32 16' %t &&
 // RUN: true
 
+
+
+
+
+
+
+
 @interface A @end
-@implementation A
+@implementation A // Line 15
 -(void) m0 {}
 @end