Skip to content

Commit e9ddde7

Browse files
author
mattarde
committed
fix residue
1 parent e512de3 commit e9ddde7

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

llvm/lib/CodeGen/LowLevelTypeUtils.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,6 @@ const llvm::fltSemantics &llvm::getFltSemanticForLLT(LLT Ty) {
8080
return APFloat::IEEEsingle();
8181
case 64:
8282
return APFloat::IEEEdouble();
83-
case 80:
84-
return APFloat::x87DoubleExtended();
8583
case 128:
8684
return APFloat::IEEEquad();
8785
}

llvm/test/CodeGen/X86/isel-fpclass.ll

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s -check-prefixes=X64,X64-SDAGISEL
44
; RUN: llc < %s -mtriple=i686-linux -fast-isel -fast-isel-abort=1 | FileCheck %s -check-prefixes=X86-FASTISEL
55
; RUN: llc < %s -mtriple=x86_64-linux -fast-isel -fast-isel-abort=1 | FileCheck %s -check-prefixes=X64,X64-FASTISEL
6-
; RUN: llc < %s -mtriple=i686-linux -global-isel -global-isel-abort=1 | FileCheck %s -check-prefixes=X86,X86-GISEL
6+
; RUN: llc < %s -mtriple=i686-linux -global-isel -global-isel-abort=1 | FileCheck %s -check-prefixes=X86
77
; RUN: llc < %s -mtriple=x86_64-linux -global-isel -global-isel-abort=1 | FileCheck %s -check-prefixes=X64,X64-GISEL
88

99
; FIXME: We can reuse/delete llvm/test/CodeGen/X86/is_fpclass.ll when all patches are included.
@@ -649,5 +649,4 @@ entry:
649649
%0 = tail call i1 @llvm.is.fpclass.f80(x86_fp80 %x, i32 1023)
650650
ret i1 %0
651651
}
652-
;; NOTE: These prefixes are unused and the list is autogenerated. Do not add tests below this line:
653-
; X86-GISEL: {{.*}}
652+

0 commit comments

Comments
 (0)