[LLVM][IR] Use splat syntax when printing ConstantExpr based splats. (#116856)
[llvm-project.git] / clang / test / CodeGen / noduplicate-cxx11-test.cpp
blobc2a81d4b89ad827f9fc20756fd1c96fdcd30f4a5
1 // RUN: %clang_cc1 -triple=i686-pc-unknown -std=c++11 %s -emit-llvm -o - | FileCheck %s
3 // This was a problem in Sema, but only shows up as noinline missing
4 // in CodeGen.
6 // CHECK: define{{.*}} i32 @_Z15noduplicatedfuni(i32 noundef %a) [[NI:#[0-9]+]]
8 int noduplicatedfun [[clang::noduplicate]] (int a) {
10 return a+1;
14 int main() {
16 return noduplicatedfun(5);
20 // CHECK: attributes [[NI]] = { {{.*}}noduplicate {{.*}}nounwind{{.*}} }