Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

release / riscv-demo

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • riscv-demo
  • simple
  • tests
  • packedhalf
  • ph_sub-allsf.c
  • Martin's avatar
    Release 2022.1 · a22edae1
    Martin committed Sep 07, 2022
    a22edae1 Browse Files
ph_sub-allsf.c 238 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
////C: '-msoft-fp-half -msoft-fp-single -msoft-fp-double'
////A: '--has-fpack --has-fhalf'

typedef half phalf __attribute__((ext_vector_type(2)));


int main(void)
{
  volatile phalf a,b;
  volatile phalf o;

  o = a - b;

  return 0;
}