mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 01:46:06 +00:00
12 lines
285 B
C++
12 lines
285 B
C++
// RUN: %clang_cc1 %s -triple=i686-pc-win32 -fms-extensions -stack-protector 2 -emit-llvm -o - | FileCheck %s
|
|
|
|
#pragma strict_gs_check(on)
|
|
|
|
extern "C" void test0() {
|
|
}
|
|
// CHECK: define {{.*}} @test0() #[[ATTR_TEST0:[0-9]*]] {
|
|
|
|
|
|
// CHECK: attributes #[[ATTR_TEST0]] = {{.*}} sspstrong
|
|
|