[Reland][Runtimes] Merge 'compile_commands.json' files from runtimes build (#116303)
[llvm-project.git] / llvm / test / CodeGen / DirectX / strip-fn-attrs.ll
blob4223c9094319453fd525f773d6a17fb3076b0f8d
1 ; RUN: llc %s --filetype=asm -o - | FileCheck %s
2 target triple = "dxil-unknown-shadermodel6.7-library"
4 ; CHECK: Function Attrs: nounwind memory(none)
5 ; Function Attrs: norecurse nounwind readnone willreturn
6 define dso_local float @fma(float %0, float %1, float %2) local_unnamed_addr #0 {
7   %4 = fmul float %0, %1
8   %5 = fadd float %4, %2
9   ret float %5
12 ; CHECK: attributes #0 = { nounwind memory(none) }
13 ; CHECK-NOT: attributes #
15 attributes #0 = { norecurse nounwind readnone willreturn "hlsl.export"}