search for: floatingpointexceptions

Displaying 4 results from an estimated 4 matches for "floatingpointexceptions".

2016 Jul 15
3
[PATCH 1/4] Create a simple project to create version.h to run before any other
Avoids trying to create and replace version.h more than once which led to file-locking errors with multicore builds. --- Makefile.am | 1 + win32/VS2015/celt.vcxproj | 48 +++++++++++++++++--------- win32/VS2015/generate_version.vcxproj | 65 +++++++++++++++++++++++++++++++++++ win32/VS2015/opus.sln | 32 ++++++++++++++++-
2014 Aug 07
3
[LLVMdev] Proposal: Add a target lowering hook to state that target supports floating point exception behavior.
...ude/llvm/Target/TargetLowering.h (revision 215148) +++ include/llvm/Target/TargetLowering.h (working copy) @@ -261,6 +261,11 @@ bool isMaskAndBranchFoldingLegal() const { return MaskAndBranchFoldingIsLegal; } + + /// Return true if target supports floating point exceptions. + bool hasFloatingPointExceptions() const { + return FloatingPointExceptions; + } /// Return the ValueType of the result of SETCC operations. Also used to /// obtain the target's preferred type for the condition operand of SELECT and @@ -1053,6 +1058,12 @@ /// possible, should be replaced by an alternate sequenc...
2016 Sep 09
2
[PATCH 1/3] appveyor: include opus.dll and opus.exp files if available
Using -i should prevent failing if the files don't exist. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index c85b0b1..ad9c6c0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -17,7 +17,7 @@ build: verbosity: minimal after_build: -- cmd: 7z a opus.zip win32\VS2015\%PLATFORM%\%CONFIGURATION%\opus.lib include\*.h +- cmd: 7z
2014 Aug 08
3
[LLVMdev] Proposal: Add a target lowering hook to state that target supports floating point exception behavior.
...vm/Target/TargetLowering.h (working copy) >> @@ -261,6 +261,11 @@ >> bool isMaskAndBranchFoldingLegal() const { >> return MaskAndBranchFoldingIsLegal; >> } >> + >> + /// Return true if target supports floating point exceptions. >> + bool hasFloatingPointExceptions() const { >> + return FloatingPointExceptions; >> + } >> >> /// Return the ValueType of the result of SETCC operations. Also used to >> /// obtain the target's preferred type for the condition operand of SELECT and >> @@ -1053,6 +1058,12 @@ >>...