This revision was automatically updated to reflect the committed changes.
Closed by commit rG271f96477328: [Preprocessor][X86] Fix __code_model_*__
predefine macros (authored by mcgrathr, committed by MaskRay).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llv
mcgrathr added a comment.
Thanks! Can you land it for me?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D75003/new/
https://reviews.llvm.org/D75003
___
cfe-commits mailing list
cfe-commits@lists.llvm.or
MaskRay accepted this revision.
MaskRay added a comment.
This revision is now accepted and ready to land.
LG. The full story:
// gcc/config/i386/i386-c.c
case CM_SMALL:
case CM_SMALL_PIC:
def_or_undef (parse_in, "__code_model_small__");
break;
case CM_MEDIUM:
mcgrathr created this revision.
mcgrathr added a reviewer: tamur.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.
GCC defines __code_model_*__ (two trailing underscores), not
__code_model_*_ (one trailing underscore).
Repository:
rG LLVM Github Monorepo
https://reviews.