[mlir][NFC] Avoid using braced initializer lists to call a constructor. (#123714)
[llvm-project.git] / llvm / test / Transforms / InstCombine / remquol-fp80.ll
blobfe65ee1acc90255d1a242789e08e8aa73b56ebd8
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5
2 ; RUN: opt < %s -passes=instcombine -S | FileCheck %s
4 define x86_fp80 @remquo_fp80(ptr %quo) {
5 ; CHECK-LABEL: define x86_fp80 @remquo_fp80(
6 ; CHECK-SAME: ptr [[QUO:%.*]]) {
7 ; CHECK-NEXT:  [[ENTRY:.*:]]
8 ; CHECK-NEXT:    store i32 -2, ptr [[QUO]], align 4
9 ; CHECK-NEXT:    ret x86_fp80 0xK3FFF8000000000000000
11 entry:
12   %call = call x86_fp80 @remquol(x86_fp80 0xKC001A000000000000000, x86_fp80 0xK4000C000000000000000, ptr %quo)
13   ret x86_fp80 %call
16 declare x86_fp80 @remquol(x86_fp80, x86_fp80, ptr)