Skip to content

Commit 96d51a5

Browse files
committed
Add URL to GCC 7.3 Manual, Section 6
Signed-off-by: Deb Taylor <deb.taylor@intel.com>
1 parent 8d27c1e commit 96d51a5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

doc/developer-guides/c_coding_guidelines.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ b) Mixed-use of ## or # operators shall not be allowed.
2323
Compliant example::
2424

2525
#define CONCAT(x, y) x ## y
26-
26+
2727
uint32_t ab = 32U;
2828
printf("%d \n", CONCAT(a, b));
2929

@@ -32,7 +32,7 @@ Compliant example::
3232
Non-compliant example::
3333

3434
#define CONCAT(x, y, z) x ## y ## z
35-
35+
3636
uint32_t abc = 32U;
3737
printf("%d \n", CONCAT(a, b, c));
3838

@@ -3609,6 +3609,7 @@ bytes, long is 8 bytes, and long long is not used.
36093609
Language Extensions
36103610
*******************
36113611

3612+
Refer to the `GCC 7.3 Manual, Section 6 Extensions to the C Language Family <https://gcc.gnu.org/onlinedocs/gcc-7.3.0/gcc/C-Extensions.html#C-Extensions/>`_.
36123613

36133614
C-LE-01: Use of inline Assembly language in C Code is allowed
36143615
=============================================================
@@ -3647,3 +3648,4 @@ This rule applies to the following designated initializer: writing '[first ...
36473648
last] = value' to initialize a range of elements to the same value, refers to
36483649
section 6.27 in GCC 7.3 Manual.
36493650

3651+

0 commit comments

Comments
 (0)