Skip to content
Snippets Groups Projects
Commit 05c4fafb authored by Cheng Shao's avatar Cheng Shao Committed by Marge Bot
Browse files

rts: use __builtin_offsetof to implement STG_FIELD_OFFSET

This patch fixes the STG_FIELD_OFFSET macro definition by using
__builtin_offsetof, which is what gcc/clang uses to implement offsetof
in standard C. The previous definition that uses NULL pointer involves
subtle undefined behavior in C and thus reported by
UndefinedBehaviorSanitizer as well:

```
rts/Capability.h:243:58: runtime error: member access within null pointer of type 'Capability' (aka 'struct Capability_')
SUMMARY: UndefinedBehaviorSanitizer: undefined-behavior rts/Capability.h:243:58
```
parent c77a48af
No related branches found
No related tags found
No related merge requests found
......@@ -108,7 +108,7 @@
/* Compute offsets of struct fields
*/
#define STG_FIELD_OFFSET(s_type, field) ((StgWord)&(((s_type*)0)->field))
#define STG_FIELD_OFFSET(s_type, field) __builtin_offsetof(s_type, field)
/*
* 'Portable' inlining:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment