blob: 7197dacc4ba0b60bf584774b7b0ea101ea524d73 [file] [log] [blame]
Alexander Ivchenko0fb8c872018-05-18 11:56:21 +00001// RUN: %clang -target i386-unknown-unknown -x c -E -dM -o - -fcf-protection=return %s | FileCheck %s --check-prefix=RETURN
2// RUN: %clang -target i386-unknown-unknown -x c -E -dM -o - -fcf-protection=branch %s | FileCheck %s --check-prefix=BRANCH
3// RUN: %clang -target i386-unknown-unknown -x c -E -dM -o - -fcf-protection=full %s | FileCheck %s --check-prefix=FULL
Oren Ben Simhon57cc1a52018-01-09 08:53:59 +00004
Alexander Ivchenko0fb8c872018-05-18 11:56:21 +00005// RETURN: #define __CET__ 2
6// BRANCH: #define __CET__ 1
7// FULL: #define __CET__ 3
Oren Ben Simhon57cc1a52018-01-09 08:53:59 +00008void foo() {}