mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-09 09:32:20 +00:00
d450bffcf1
llvm-svn: 55637
20 lines
299 B
C
20 lines
299 B
C
// RUN: clang -fsyntax-only -verify -parse-noop %s
|
|
#if 0
|
|
#include <stdio.h>
|
|
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;
|
|
}
|
|
#endif
|