diff options
author | Amaury Sechet <deadalnix@gmail.com> | 2019-08-26 13:53:29 +0000 |
---|---|---|
committer | Amaury Sechet <deadalnix@gmail.com> | 2019-08-26 13:53:29 +0000 |
commit | 298c0b352d5ed998c91328f5023fb192c688e1ed (patch) | |
tree | 4b18d3483a92f01bad730e69a18c6edd0c042da5 /llvm/test/CodeGen/X86/bit-test-shift.ll | |
parent | 55aafa35ea33fcbb2ec3050578119a7958fa7012 (diff) | |
download | bcm5719-llvm-298c0b352d5ed998c91328f5023fb192c688e1ed.tar.gz bcm5719-llvm-298c0b352d5ed998c91328f5023fb192c688e1ed.zip |
[X86] Automatically generate various tests. NFC
llvm-svn: 369909
Diffstat (limited to 'llvm/test/CodeGen/X86/bit-test-shift.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/bit-test-shift.ll | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/X86/bit-test-shift.ll b/llvm/test/CodeGen/X86/bit-test-shift.ll index 8970db4027e..b45f5f876f5 100644 --- a/llvm/test/CodeGen/X86/bit-test-shift.ll +++ b/llvm/test/CodeGen/X86/bit-test-shift.ll @@ -1,11 +1,16 @@ +; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py ; RUN: llc < %s -mtriple=i686-- | FileCheck %s ; <rdar://problem/8285015> define i32 @x(i32 %t) nounwind readnone ssp { +; CHECK-LABEL: x: +; CHECK: # %bb.0: # %entry +; CHECK-NEXT: movl {{[0-9]+}}(%esp), %eax +; CHECK-NEXT: shll $23, %eax +; CHECK-NEXT: sarl $31, %eax +; CHECK-NEXT: andl $-26, %eax +; CHECK-NEXT: retl entry: -; CHECK: shll $23, %eax -; CHECK: sarl $31, %eax -; CHECK: andl $-26, %eax %and = and i32 %t, 256 %tobool = icmp eq i32 %and, 0 %retval.0 = select i1 %tobool, i32 0, i32 -26 |