9abf00e2d3
Actual contents of the pragma are currently just discarded. This supports both #pragma and _Pragma() definitions, but the pragma must end the line it is on and cannot be in the middle of a statement.
20 lines
136 B
C
20 lines
136 B
C
int a;
|
|
|
|
#pragma test1
|
|
|
|
int b;
|
|
|
|
_Pragma( "test2" )
|
|
|
|
int main(void) {
|
|
a = 0;
|
|
|
|
#pragma test3
|
|
|
|
b = 1;
|
|
|
|
_Pragma("test4")
|
|
|
|
return a;
|
|
}
|