diff options
author | Devang Patel <dpatel@apple.com> | 2009-03-13 21:57:16 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2009-03-13 21:57:16 +0000 |
commit | 4482c0518bddf60922cf474649fd629cf12d9ffc (patch) | |
tree | ed4416f8a7c0c0e6d1b24b2608bd8971e1a671e4 /llvm/test/FrontendC++ | |
parent | 7440952c01e48755f7c41c1fbcd3762c070a9b2d (diff) | |
download | bcm5719-llvm-4482c0518bddf60922cf474649fd629cf12d9ffc.tar.gz bcm5719-llvm-4482c0518bddf60922cf474649fd629cf12d9ffc.zip |
Fix test case. Now, llvm-gcc emits debug info for artificiaal variable _comp_ctor.
llvm-svn: 66963
Diffstat (limited to 'llvm/test/FrontendC++')
-rw-r--r-- | llvm/test/FrontendC++/2009-02-16-CtorNames-dbg.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/test/FrontendC++/2009-02-16-CtorNames-dbg.cpp b/llvm/test/FrontendC++/2009-02-16-CtorNames-dbg.cpp index 401df90ab37..8f1b598aa2b 100644 --- a/llvm/test/FrontendC++/2009-02-16-CtorNames-dbg.cpp +++ b/llvm/test/FrontendC++/2009-02-16-CtorNames-dbg.cpp @@ -1,8 +1,4 @@ // RUN: %llvmgcc -S -g --emit-llvm %s -o - | grep "\~A" -// RUN: %llvmgcc -S -g --emit-llvm %s -o - | not grep comp_ctor -// RUN: %llvmgcc -S -g --emit-llvm %s -o - | not grep comp_dtor -// FIXME: This is failing on Darwin because of either r66861 or r66859. -// XFAIL: darwin class A { int i; public: |