OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Op2C
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.cpp
859
ConstantFP *
Op2C
= dyn_cast<ConstantFP>(Op2);
860
if (
Op2C
== 0) return 0;
862
if (
Op2C
->getValueAPF().isZero()) // pow(x, 0.0) -> 1.0
865
if (
Op2C
->isExactlyValue(0.5)) {
882
if (
Op2C
->isExactlyValue(1.0)) // pow(x, 1.0) -> x
884
if (
Op2C
->isExactlyValue(2.0)) // pow(x, 2.0) -> x*x
886
if (
Op2C
->isExactlyValue(-1.0)) // pow(x, -1.0) -> 1.0/x
[
all
...]
/external/llvm/lib/Analysis/
ConstantFolding.cpp
[
all
...]
Completed in 40 milliseconds