diff options
Diffstat (limited to 'llvm/test/Analysis/CostModel/X86/scalarize.ll')
-rw-r--r-- | llvm/test/Analysis/CostModel/X86/scalarize.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/Analysis/CostModel/X86/scalarize.ll b/llvm/test/Analysis/CostModel/X86/scalarize.ll index f124de50699..fd4e3005bd9 100644 --- a/llvm/test/Analysis/CostModel/X86/scalarize.ll +++ b/llvm/test/Analysis/CostModel/X86/scalarize.ll @@ -21,11 +21,11 @@ declare %i8 @llvm.cttz.v2i64(%i8) define void @test_scalarized_intrinsics() { %r1 = add %i8 undef, undef -; CHECK32: cost of 12 {{.*}}bswap.v4i32 -; CHECK64: cost of 12 {{.*}}bswap.v4i32 +; CHECK32: cost of 1 {{.*}}bswap.v4i32 +; CHECK64: cost of 1 {{.*}}bswap.v4i32 %r2 = call %i4 @llvm.bswap.v4i32(%i4 undef) -; CHECK32: cost of 10 {{.*}}bswap.v2i64 -; CHECK64: cost of 6 {{.*}}bswap.v2i64 +; CHECK32: cost of 1 {{.*}}bswap.v2i64 +; CHECK64: cost of 1 {{.*}}bswap.v2i64 %r3 = call %i8 @llvm.bswap.v2i64(%i8 undef) ; CHECK32: cost of 12 {{.*}}cttz.v4i32 |