From: Devang Patel Date: Fri, 4 Jun 2010 23:47:41 +0000 (+0000) Subject: test case for r105504. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7f508e8e10a6a7b578c3435c2cd081fae76a5b3b;p=oota-llvm.git test case for r105504. Radar 8055687. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105505 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/FrontendObjC/2010-06-04-UnnamedCFString-dbg.m b/test/FrontendObjC/2010-06-04-UnnamedCFString-dbg.m new file mode 100644 index 00000000000..bded9ea2a40 --- /dev/null +++ b/test/FrontendObjC/2010-06-04-UnnamedCFString-dbg.m @@ -0,0 +1,6 @@ +// RUN: %llvmgcc -S -O0 -g %s -o - | grep DW_TAG_variable | count 1 + +// Do not emit debug info for unnamed builtin CFString variable. +@interface Foo +@end +Foo *FooName = @"FooBar";