• Scope of #pragma
    If I declare: #pragma optimize(0) void func1(void) ... void func2(void) ... void func3(void) ... Does this apply only for func1 or for all subsequent functions (i.e. func2,func3,etc)?...
  • #pragma pack
    Does the realview arm compiler support the following syntax: #pragma pack(push, 1) and #pragma pack(pop) or do I need to separate it into #pragma push #pragma pack(1) and #pragma pop...
  • pragma pack structure in vxworks
    Hi, I am facing a problem in vxWorks. The problem is: I hava a pragma packed structure like below: struct C { float aaa; float bbb; } __attribute__((__packed__)) var3; struct B {...
  • STM32F4 Problem with #pragma pack(x)
    Hello, Depending on the control #pragma pack(x), the result of the compilation is different. In C++, Here's the problem, but it is more difficult without picture: With #pragma pack(2), the result...
  • scope of label
    Is a label local or global? For instance, two functions aa1() and aa2() are in file aa. A label L is placed in aa1(). Another function bb() is located in bb file. Which function(s) can access the label...