[cfe-commits] r94821 - /cfe/trunk/test/CodeGen/debug-info-crash.c
Devang Patel
dpatel at apple.com
Fri Jan 29 10:32:33 PST 2010
Author: dpatel
Date: Fri Jan 29 12:32:33 2010
New Revision: 94821
URL: http://llvm.org/viewvc/llvm-project?rev=94821&view=rev
Log:
New test case.
Added:
cfe/trunk/test/CodeGen/debug-info-crash.c
Added: cfe/trunk/test/CodeGen/debug-info-crash.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/debug-info-crash.c?rev=94821&view=auto
==============================================================================
--- cfe/trunk/test/CodeGen/debug-info-crash.c (added)
+++ cfe/trunk/test/CodeGen/debug-info-crash.c Fri Jan 29 12:32:33 2010
@@ -0,0 +1,21 @@
+// RUN: %clang_cc1 -triple i386-apple-darwin10 -fblocks -g -S %s -o -
+
+// rdar://7590323
+typedef struct dispatch_queue_s *dispatch_queue_t;
+__attribute__((visibility("default")))
+extern struct dispatch_queue_s _dispatch_main_q;
+typedef struct dispatch_item_s *dispatch_item_t;
+typedef void (^dispatch_legacy_block_t)(dispatch_item_t);
+dispatch_item_t LEGACY_dispatch_call(dispatch_queue_t dq,
+ dispatch_legacy_block_t dispatch_block,
+ dispatch_legacy_block_t callback_block) {
+ dispatch_queue_t lq = _dispatch_queue_get_current() ?: (&_dispatch_main_q);
+ dispatch_async(dq, ^{
+ if (callback_block) {
+ dispatch_async(lq, ^{
+ }
+ );
+ }
+ }
+ );
+}
More information about the cfe-commits
mailing list