Files
clang-p2996/clang/test/CodeGen/convergent-functions.cpp
2021-06-29 00:21:07 +05:30

11 lines
414 B
C++

// RUN: %clang_cc1 -triple i386-pc-win32 -emit-llvm -fconvergent-functions -o - < %s | FileCheck -check-prefixes=CHECK,CONVFUNC %s
// RUN: %clang_cc1 -triple i386-pc-win32 -emit-llvm -o - < %s | FileCheck -check-prefixes=CHECK,NOCONVFUNC %s
// Test that the -fconvergent-functions flag works
// CHECK: attributes #0 = {
// NOCONVFUNC-NOT: convergent
// CONVFUNC-SAME: convergent
// CHECK-SAME: }
void func() { }