David Neto 2016-06-14 11:45:35 -04:00
parent 3ed641df39
commit 37e4600c3e
3 changed files with 6 additions and 3 deletions

View File

@ -17,3 +17,6 @@ v2016.0-dev 2016-04-22
- Supports integer widths up to 64 bits - Supports integer widths up to 64 bits
- Validator is incomplete - Validator is incomplete
- Supported on Linux, OSX, Android, Windows - Supported on Linux, OSX, Android, Windows
- Fixes bugs:
- #143: OpenCL pow and pown arguments

View File

@ -385,7 +385,6 @@
"opname" : "pow", "opname" : "pow",
"opcode" : 48, "opcode" : 48,
"operands" : [ "operands" : [
{ "kind" : "IdRef" },
{ "kind" : "IdRef" }, { "kind" : "IdRef" },
{ "kind" : "IdRef" } { "kind" : "IdRef" }
] ]
@ -394,6 +393,7 @@
"opname" : "pown", "opname" : "pown",
"opcode" : 49, "opcode" : 49,
"operands" : [ "operands" : [
{ "kind" : "IdRef" },
{ "kind" : "IdRef" } { "kind" : "IdRef" }
] ]
}, },

View File

@ -153,8 +153,8 @@ INSTANTIATE_TEST_CASE_P(
CASE2(Modf, modf), CASE2(Modf, modf),
CASE1(Nan, nan), CASE1(Nan, nan),
CASE2(Nextafter, nextafter), CASE2(Nextafter, nextafter),
CASE3(Pow, pow), CASE2(Pow, pow),
CASE1(Pown, pown), CASE2(Pown, pown),
CASE2(Powr, powr), CASE2(Powr, powr),
CASE2(Remainder, remainder), CASE2(Remainder, remainder),
CASE3(Remquo, remquo), CASE3(Remquo, remquo),