Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 664 Bytes

compiler-warning-level-1-c4124.md

File metadata and controls

17 lines (13 loc) · 664 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 1) C4124
Compiler Warning (level 1) C4124
11/04/2016
C4124
C4124
c08c3a65-9584-47a1-a147-44f00c4b230e

Compiler Warning (level 1) C4124

__fastcall with stack checking is inefficient

The __fastcall keyword was used with stack checking enabled.

The __fastcall convention generates faster code, but stack checking causes slower code. When using __fastcall, turn off stack checking with the check_stack pragma or /Gs.

This warning is issued only for the first function declared under these conditions.