about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/llvm
diff options
context:
space:
mode:
authorKaran Janthe <karanjanthe@gmail.com>2025-08-23 23:10:48 +0000
committerKaran Janthe <karanjanthe@gmail.com>2025-09-19 04:02:20 +0000
commit664e83b3e76b51fb5192e74a64eef3bc5bbd4e32 (patch)
treee777129c436cdcb8fa1cfaec619a6c8afc586395 /compiler/rustc_codegen_llvm/src/llvm
parent5d3ebc3804299503387b7ea1427f1619d410c2b2 (diff)
downloadrust-664e83b3e76b51fb5192e74a64eef3bc5bbd4e32.tar.gz
rust-664e83b3e76b51fb5192e74a64eef3bc5bbd4e32.zip
added typetree support for memcpy
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/llvm')
-rw-r--r--compiler/rustc_codegen_llvm/src/llvm/enzyme_ffi.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_llvm/src/llvm/enzyme_ffi.rs b/compiler/rustc_codegen_llvm/src/llvm/enzyme_ffi.rs
index 12b6ffa3c0b..9dd84ad9a4d 100644
--- a/compiler/rustc_codegen_llvm/src/llvm/enzyme_ffi.rs
+++ b/compiler/rustc_codegen_llvm/src/llvm/enzyme_ffi.rs
@@ -25,6 +25,7 @@ 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,
 }