From 9dd4e4e63a53813ba519281ec5c35e678b837d5d Mon Sep 17 00:00:00 2001 From: "Duncan P. N. Exon Smith" Date: Wed, 29 Apr 2015 16:40:08 +0000 Subject: DebugInfo: Metadata constructs now start with DI* LLVM r236120 renamed debug info IR constructs to use a `DI` prefix, now that the `DIDescriptor` hierarchy has been gone for about a week. This commit was generated using the rename-md-di-nodes.sh upgrade script attached to PR23080, followed by running clang-format-diff.py on the `lib/` portion of the patch. llvm-svn: 236121 --- clang/test/CodeGen/2010-03-5-LexicalScope.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'clang/test/CodeGen/2010-03-5-LexicalScope.c') diff --git a/clang/test/CodeGen/2010-03-5-LexicalScope.c b/clang/test/CodeGen/2010-03-5-LexicalScope.c index bec7d84ed6f..007be7684ba 100644 --- a/clang/test/CodeGen/2010-03-5-LexicalScope.c +++ b/clang/test/CodeGen/2010-03-5-LexicalScope.c @@ -1,6 +1,6 @@ // RUN: %clang_cc1 -emit-llvm -g %s -o - | FileCheck %s -// CHECK: !MDLexicalBlock( -// CHECK: !MDLexicalBlock( +// CHECK: !DILexicalBlock( +// CHECK: !DILexicalBlock( int foo(int i) { if (i) { int j = 2; -- cgit v1.2.3