diff options
| author | Karan Janthe <karanjanthe@gmail.com> | 2025-08-27 18:23:54 +0000 |
|---|---|---|
| committer | Karan Janthe <karanjanthe@gmail.com> | 2025-09-19 04:11:35 +0000 |
| commit | 54f9376660707d4ca9fce51fd423658f75128ac4 (patch) | |
| tree | 1ca4de3e5f5dab70b30d0feee306b5b9643c1467 /compiler/rustc_codegen_llvm/src/llvm | |
| parent | d89ee858ab80f2c922c117c95b20264be8b84e3c (diff) | |
| download | rust-54f9376660707d4ca9fce51fd423658f75128ac4.tar.gz rust-54f9376660707d4ca9fce51fd423658f75128ac4.zip | |
autodiff: f128 support added for typetree
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/llvm')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/llvm/enzyme_ffi.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/llvm/enzyme_ffi.rs b/compiler/rustc_codegen_llvm/src/llvm/enzyme_ffi.rs index 9dd84ad9a4d..1596dc48379 100644 --- a/compiler/rustc_codegen_llvm/src/llvm/enzyme_ffi.rs +++ b/compiler/rustc_codegen_llvm/src/llvm/enzyme_ffi.rs @@ -25,8 +25,8 @@ pub(crate) enum CConcreteType { DT_Half = 3, DT_Float = 4, DT_Double = 5, - // FIXME(KMJ-007): handle f128 using long double here(https://github.com/EnzymeAD/Enzyme/issues/1600) DT_Unknown = 6, + DT_FP128 = 9, } pub(crate) struct TypeTree { |
