summaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/2010-02-16-DbgScopes.c
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/CodeGen/2010-02-16-DbgScopes.c')
-rw-r--r--clang/test/CodeGen/2010-02-16-DbgScopes.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/clang/test/CodeGen/2010-02-16-DbgScopes.c b/clang/test/CodeGen/2010-02-16-DbgScopes.c
new file mode 100644
index 0000000..b11f920
--- /dev/null
+++ b/clang/test/CodeGen/2010-02-16-DbgScopes.c
@@ -0,0 +1,18 @@
+// RUN: %clang_cc1 -emit-llvm -g < %s | grep lexical | count 5
+// Test to check number of lexical scope identified in debug info.
+
+extern int bar();
+extern void foobar();
+void foo(int s) {
+ unsigned loc = 0;
+ if (s) {
+ if (bar()) {
+ foobar();
+ }
+ } else {
+ loc = 1;
+ if (bar()) {
+ loc = 2;
+ }
+ }
+}