HomeSort by relevance Sort by last modified time
    Searched refs:allowReciprocal (Results 1 - 3 of 3) sorted by null

  /external/llvm/unittests/IR/
IRBuilderTest.cpp 186 EXPECT_TRUE(Builder.getFastMathFlags().AllowReciprocal);
204 EXPECT_TRUE(Builder.getFastMathFlags().AllowReciprocal);
296 EXPECT_FALSE(Builder.getFastMathFlags().allowReciprocal());
310 EXPECT_TRUE(Builder.getFastMathFlags().allowReciprocal());
314 EXPECT_FALSE(Builder.getFastMathFlags().allowReciprocal());
  /external/llvm/include/llvm/IR/
Operator.h 176 AllowReciprocal = (1 << 4)
192 bool allowReciprocal() const { return 0 != (Flags & AllowReciprocal); }
199 void setAllowReciprocal() { Flags |= AllowReciprocal; }
250 (SubclassOptionalData & ~FastMathFlags::AllowReciprocal) |
251 (B * FastMathFlags::AllowReciprocal);
294 return (SubclassOptionalData & FastMathFlags::AllowReciprocal) != 0;
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 107 milliseconds