Home | History | Annotate | Download | only in MCTargetDesc

Lines Matching full:isdarwin

35   bool IsDarwin;
39 explicit PPCMCExpr(VariantKind Kind, const MCExpr *Expr, bool IsDarwin)
40 : Kind(Kind), Expr(Expr), IsDarwin(IsDarwin) {}
47 bool isDarwin, MCContext &Ctx);
50 bool isDarwin, MCContext &Ctx) {
51 return create(VK_PPC_LO, Expr, isDarwin, Ctx);
55 bool isDarwin, MCContext &Ctx) {
56 return create(VK_PPC_HI, Expr, isDarwin, Ctx);
60 bool isDarwin, MCContext &Ctx) {
61 return create(VK_PPC_HA, Expr, isDarwin, Ctx);
75 bool isDarwinSyntax() const { return IsDarwin; }