[PATCH] D47720: [DebugInfo] Inline for without DebugLocation

Anastasis via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Tue Jun 5 09:00:21 PDT 2018


gramanas updated this revision to Diff 149996.
gramanas added a comment.

Add comment explaining the test


Repository:
  rC Clang

https://reviews.llvm.org/D47720

Files:
  test/CodeGen/debug-info-inline-for.c


Index: test/CodeGen/debug-info-inline-for.c
===================================================================
--- /dev/null
+++ test/CodeGen/debug-info-inline-for.c
@@ -0,0 +1,13 @@
+// RUN: %clang_cc1 -debug-info-kind=limited -emit-llvm -o - %s | FileCheck %s
+// Check that clang emits Debug location in the phi instruction
+
+int func(int n) {
+  int a;
+  for(a = 10; a>0 && n++; a--);
+  return n;
+}
+
+// CHECK: land.end:
+// CHECK-NEXT: {{.*}} = phi i1 {{.*}} !dbg ![[DbgLoc:[0-9]+]]
+
+// CHECK: ![[DbgLoc]] = !DILocation(


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D47720.149996.patch
Type: text/x-patch
Size: 534 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20180605/bfca87a4/attachment.bin>


More information about the cfe-commits mailing list