Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / X86 / pr35399.ll
blob0fda715460698352e702fa5ec6d493c3ed64d8be
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=x86_64-unknown -mattr=lzcnt | FileCheck %s
4 ; Make sure we emit opoosite setcc instructions.
5 define i64 @pr35399(i64, ptr, ptr) {
6 ; CHECK-LABEL: pr35399:
7 ; CHECK:       # %bb.0:
8 ; CHECK-NEXT:    lzcntq %rdi, %rax
9 ; CHECK-NEXT:    setae (%rsi)
10 ; CHECK-NEXT:    setb (%rdx)
11 ; CHECK-NEXT:    retq
12   %4 = tail call i64 @llvm.ctlz.i64(i64 %0, i1 false)
13   %5 = icmp ne i64 %0, 0
14   %6 = zext i1 %5 to i8
15   store i8 %6, ptr %1, align 1
16   %7 = xor i1 %5, true
17   %8 = zext i1 %7 to i8
18   store i8 %8, ptr %2, align 1
19   ret i64 %4
22 declare i64 @llvm.ctlz.i64(i64, i1)