Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Martin / daiteq-llvm10

  • 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
  • daiteq-llvm10
  • tests
  • src
  • double
  • double_muld.c
  • Martin's avatar
    llvm w/ daiFPU and SWAR data types. All changes consolidated in a single patch. Release 3 · dd9a64f9
    Martin committed May 06, 2021
    dd9a64f9
double_muld.c 219 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14

/* assembler flags '//A:' , defines '//D:' , compiler options '//T:' */
////T: '-msoft-fp-double'
////A: '--has-fhalf'

int main(void)
{
  volatile float a, b;
  volatile double z;

  z = (double)a * b;

  return 0;
}