This is an archive of the discontinued LLVM Phabricator instance.

[MLIR][LLVM] Add simple folders for bitcast/addrspacecast/gep
ClosedPublic

Authored by wsmoses on Jan 5 2022, 5:37 PM.

Details

Summary

Add 5 simple folders

  • bitcast(x : T0, T0) -> x
  • addrcast(x : T0, T0) -> x
  • bitcast(bitcast(x : T0, T1), T0) -> x
  • addrcast(addrcast(x : T0, T1), T0) -> x
  • gep %x:T, 0 -> %x:T

Diff Detail

Event Timeline

wsmoses created this revision.Jan 5 2022, 5:37 PM
wsmoses requested review of this revision.Jan 5 2022, 5:37 PM
mehdi_amini accepted this revision.Jan 5 2022, 6:10 PM
This revision is now accepted and ready to land.Jan 5 2022, 6:10 PM