[llvm] r207782 - DebugInfo: Correct the attribute type kind.

David Blaikie dblaikie at gmail.com
Thu May 1 11:31:21 PDT 2014


Author: dblaikie
Date: Thu May  1 13:31:21 2014
New Revision: 207782

URL: http://llvm.org/viewvc/llvm-project?rev=207782&view=rev
Log:
DebugInfo: Correct the attribute type kind.

Post commit review feedback from Paul Robinson regarding r207777.

Modified:
    llvm/trunk/test/DebugInfo/typedef.ll

Modified: llvm/trunk/test/DebugInfo/typedef.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/typedef.ll?rev=207782&r1=207781&r2=207782&view=diff
==============================================================================
--- llvm/trunk/test/DebugInfo/typedef.ll (original)
+++ llvm/trunk/test/DebugInfo/typedef.ll Thu May  1 13:31:21 2014
@@ -6,10 +6,10 @@
 ; typedef void x;
 ; x *y;
 
-; Check that a typedef with no DW_TAG_type is produced. The absence of a type is used to imply the 'void' type.
+; Check that a typedef with no DW_AT_type is produced. The absence of a type is used to imply the 'void' type.
 
 ; CHECK: DW_TAG_typedef
-; CHECK-NOT: DW_TAG_type
+; CHECK-NOT: DW_AT_type
 ; CHECK: {{DW_TAG|NULL}}
 
 @y = global i8* null, align 8





More information about the llvm-commits mailing list