File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
compiler/rustc_codegen_llvm/src Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -25,8 +25,8 @@ pub(crate) enum CConcreteType {
25
25
DT_Half = 3 ,
26
26
DT_Float = 4 ,
27
27
DT_Double = 5 ,
28
- // FIXME(KMJ-007): handle f128 using long double here(https://github.com/EnzymeAD/Enzyme/issues/1600)
29
28
DT_Unknown = 6 ,
29
+ DT_FP128 = 9 ,
30
30
}
31
31
32
32
pub ( crate ) struct TypeTree {
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ fn to_enzyme_typetree(
31
31
rustc_ast:: expand:: typetree:: Kind :: Half => llvm:: CConcreteType :: DT_Half ,
32
32
rustc_ast:: expand:: typetree:: Kind :: Float => llvm:: CConcreteType :: DT_Float ,
33
33
rustc_ast:: expand:: typetree:: Kind :: Double => llvm:: CConcreteType :: DT_Double ,
34
- rustc_ast:: expand:: typetree:: Kind :: F128 => llvm:: CConcreteType :: DT_Unknown ,
34
+ rustc_ast:: expand:: typetree:: Kind :: F128 => llvm:: CConcreteType :: DT_FP128 ,
35
35
rustc_ast:: expand:: typetree:: Kind :: Unknown => llvm:: CConcreteType :: DT_Unknown ,
36
36
} ;
37
37
You can’t perform that action at this time.
0 commit comments