Hi,
I am exploring Toy example in MLIR(specially PrintOp lowering) https://github.com/llvm/llvm-project/blob/7cbf1a2591520c2491aa35339f227775f4d3adf6/mlir/examples/toy/Ch6/mlir/LowerToLLVM.cpp#L56C1-L56C1
I have observed that it is only supporting f64 datatype.
https://github.com/llvm/llvm-project/blob/7cbf1a2591520c2491aa35339f227775f4d3adf6/mlir/examples/toy/Ch6/mlir/LowerToLLVM.cpp#L73 , though %f
is used for f32 datatype in C
language syntax . So if I want to write the same for f32 and other data types what to write , please help !!!