-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is sufficient to parse the SQLite test case mentioned in #148. I have added a much more minimal test case which exercises the new `fneg`-related code paths added in this patch. Fixes #148.
- Loading branch information
1 parent
057fcba
commit d1a6057
Showing
5 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
define double @real_fneg(double %X) { | ||
%Y = fneg double %X ; <double> [#uses=1] | ||
ret double %Y | ||
} | ||
|
||
define double @real_fneg_constant() { | ||
%Y = fneg double -2.0 ; <double> [#uses=1] | ||
ret double %Y | ||
} | ||
|
||
define float @real_fnegf(float %X) { | ||
%Y = fneg float %X ; <float> [#uses=1] | ||
ret float %Y | ||
} |
Submodule llvm-pretty
updated
from 845662 to 226e75
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters