21 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_test_checks.py2; RUN: opt < %s -mtriple=i686-unknown-unknown -S -passes=inline | FileCheck %s3 4define i32 @func_target_cpu_nocona() #0 {5; CHECK-LABEL: @func_target_cpu_nocona(6; CHECK-NEXT: ret i32 07;8 ret i32 09}10 11define i32 @target_cpu_prescott_call_target_cpu_nocona() #1 {12; CHECK-LABEL: @target_cpu_prescott_call_target_cpu_nocona(13; CHECK-NEXT: ret i32 014;15 %call = call i32 @func_target_cpu_nocona()16 ret i32 %call17}18 19attributes #0 = { nounwind "target-cpu"="nocona" }20attributes #1 = { nounwind "target-cpu"="prescott" }21