1 // RUN: %clang_cc1 -O2 -emit-llvm %s -o - | FileCheck %s --check-prefixes NOOPT 2 // RUN: %clang_cc1 -O2 -finline-max-stacksize=64 -emit-llvm %s -o - | FileCheck %s --check-prefix OPT 3 foo()4void foo() {} 5 6 // NOOPT-NOT: inline-max-stacksize 7 // OPT: define {{.*}}@foo{{.*}}#[[ATTR:[0-9]+]] 8 // OPT: attributes #[[ATTR]] = {{.*}}"inline-max-stacksize"="64" 9