Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / Transforms / Inline / X86 / extractvalue.ll
blobccd58c87012819d33ce48e222e7f912c20fa4f4b
1 ; RUN: opt < %s -passes=inline -inline-threshold=0 -debug-only=inline-cost -print-instruction-comments -S -mtriple=x86_64-unknown-linux-gnu 2>&1 | FileCheck %s
2 ; RUN: opt < %s -passes='cgscc(inline)' -inline-threshold=0 -debug-only=inline-cost -print-instruction-comments -S -mtriple=x86_64-unknown-linux-gnu 2>&1 | FileCheck %s
3 ; REQUIRES: asserts
5 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
6 target triple = "x86_64-unknown-unknown"
8 ; Check that extractvalue's are free.
10 ; CHECK: Analyzing call of callee... (caller:caller_range)
11 ; CHECK-NEXT: Initial cost: -35
12 ; CHECK-NEXT: define i32 @callee({ i32, i32 } %arg) {
13 ; CHECK-NEXT: ; cost before = -35, cost after = -35, threshold before = 0, threshold after = 0, cost delta = 0
14 ; CHECK-NEXT:   %r = extractvalue { i32, i32 } %arg, 0
15 ; CHECK-NEXT: ; cost before = -35, cost after = -35, threshold before = 0, threshold after = 0, cost delta = 0
16 ; CHECK-NEXT:   ret i32 %r
17 ; CHECK-NEXT: }
19 define i32 @callee({i32, i32} %arg) {
20   %r = extractvalue {i32, i32} %arg, 0
21   ret i32 %r
24 define i32 @caller_range({i32, i32} %arg) {
25   %r = call i32 @callee({i32, i32} %arg)
26   ret i32 %r