tinycc-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Tinycc-devel] rev 8615bb4 makes build become nosier


From: Steven G. Messervey
Subject: Re: [Tinycc-devel] rev 8615bb4 makes build become nosier
Date: Wed, 15 Apr 2015 20:27:03 -0400

>rev 8615bb4 makes tcc complaining #pragma push_macro and #pragma pop_macro, 
>please fix or silencing it.

I cannot reproduce here.
My testcase:
/* foo.c */
#include <stdio.h>

#pragma pack(push,1)
typedef struct _bar {
  int x;
  int y;
  int z;
} _bar, *bar;
#pragma pack(pop)
typedef struct _baz {
  float m;
  float n;
  float o;
} _baz,*baz;


int main(int argc, char *argv[]) {
  bar a;
  baz b;
  printf("OK!\n");
  return 0;
}
/* end of foo.c */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]