5.7.4.1 Check-new Option

The -fcheck-new option checks that the pointer returned by operator new is not NULL before attempting to modify the storage allocated.

Typically, this check is not necessary. You can ensure that no checks are made by using the -fno-check-new form of this option. This is the default action if no option is specified.