projects
/
platform
/
upstream
/
coreclr.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8e39803
)
Fix 6667: Constant folding for unslgined long divide operation
author
Hyeongseok Oh
<hseok82.oh@smasung.com>
Thu, 22 Sep 2016 03:03:53 +0000
(12:03 +0900)
committer
Hyeongseok Oh
<hseok82.oh@smasung.com>
Thu, 22 Sep 2016 03:03:53 +0000
(12:03 +0900)
src/jit/valuenum.cpp
patch
|
blob
|
history
diff --git
a/src/jit/valuenum.cpp
b/src/jit/valuenum.cpp
index 5bc96ed4a9f885f3162d88cfd4df402bee0ae699..0cdd628a203b20c837160273a4ea919585835901 100644
(file)
--- a/
src/jit/valuenum.cpp
+++ b/
src/jit/valuenum.cpp
@@
-7061,10
+7061,10
@@
VNFunc Compiler::fgValueNumberHelperMethVNFunc(CorInfoHelpFunc helpFunc)
vnf = VNFunc(GT_MOD);
break;
case CORINFO_HELP_ULDIV:
- vnf = VNFunc(GT_DIV);
+ vnf = VNFunc(GT_
U
DIV);
break; // Is this the right thing?
case CORINFO_HELP_ULMOD:
- vnf = VNFunc(GT_MOD);
+ vnf = VNFunc(GT_
U
MOD);
break; // Is this the right thing?
case CORINFO_HELP_LNG2DBL: