Displaying 2 results from an estimated 2 matches for "exeuction".
Did you mean:
execution
2015 Sep 14
2
[LLVMDev] Inconsistent result between GCC and Clang for __builtin_fmodf
...00
$ clang++ -o builtin_fmodf_bugpoint_clang builtin_fmodf_bugpoint.cpp
1.000000 fmodf 0.100000 = 0.000000
Clang will compile __builtin_fmod() into LLVM's "frem" [1]. Since both
operands are constant, it is constant folded by IRBuilder at the time when
"frem" was built. The exeuction finally goes to
llvm::ConstantFoldBinaryInstruction() which uses APFloat::mod() to compute
the result. As you can see from above, it gives us 0.000000 (hex: 0x0)
which is different than the answer from std::fmodf() (0.100000, hex:
0x3dcccccb).
SelectionDAG also uses APFloat::mod() to fold "fr...
2008 Jul 09
0
[fdo] Announce: Linux Desktop Testing Project (LDTP) 1.2.0 released
...user interface. The framework also has tools
to record test-cases based on user events in the interface of the
application which is under testing. We strive to help in building a quality
desktop.
Whats new in this release...
============================
* Performance fix, which improves the LDTP exeuction time drastically
* 3 crasher fixes
* LDTP editor bug fixes reported by Shreyank Gupta
* Added 2 new API required for VMware Workstation automation
* API manual is updated
* Moved from CVS to GIT - Thanks to FreeDesktop administrators
* Thanks to Ubuntu automation team for using / evaluating LDTP
D...