mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-25 22:38:56 -04:00

worked for C anyway. Also kills the -cc1 options -parse-noop and -parse-print-callbacks. llvm-svn: 109392
18 lines
300 B
C
18 lines
300 B
C
// RUN: %clang_cc1 -fsyntax-only -fblocks -verify %s
|
|
int printf(const char *, ...);
|
|
void _Block_byref_release(void*src){}
|
|
|
|
int main() {
|
|
__block int X = 1234;
|
|
__block const char * message = "HELLO";
|
|
|
|
X = X - 1234;
|
|
|
|
X += 1;
|
|
|
|
printf ("%s(%d)\n", message, X);
|
|
X -= 1;
|
|
|
|
return X;
|
|
}
|