Changeset 35ea4f3 for libcfa/src/stdlib.hfa
- Timestamp:
- Jan 16, 2021, 4:48:06 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- b57db73
- Parents:
- 0edd11a (diff), 02b73ea (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/stdlib.hfa
r0edd11a r35ea4f3 191 191 } else if(Fill.tag == 't') { 192 192 for ( int i = copy_end; i < Dim * size; i += size ) { 193 #pragma GCC diagnostic push 194 #pragma GCC diagnostic ignored "-Warray-bounds" 195 #pragma GCC diagnostic push 196 #pragma GCC diagnostic ignored "-Wstringop-overflow=" 193 197 memcpy( (char *)ptr + i, &Fill.t, size ); 198 #pragma GCC diagnostic pop 199 #pragma GCC diagnostic pop 194 200 } 195 201 } else if(Fill.tag == 'a') {
Note: See TracChangeset
for help on using the changeset viewer.