src/share/vm/opto/machnode.hpp

changeset 6494
492e67693373
parent 6490
41b780b43b74
child 6518
62c54fcc0a35
     1.1 --- a/src/share/vm/opto/machnode.hpp	Mon Dec 02 10:26:14 2013 +0100
     1.2 +++ b/src/share/vm/opto/machnode.hpp	Tue Dec 10 14:29:43 2013 +0100
     1.3 @@ -103,6 +103,15 @@
     1.4      return ::as_XMMRegister(reg(ra_, node, idx));
     1.5    }
     1.6  #endif
     1.7 +  // CondRegister reg converter
     1.8 +#if defined(PPC64)
     1.9 +  ConditionRegister as_ConditionRegister(PhaseRegAlloc *ra_, const Node *node) const {
    1.10 +    return ::as_ConditionRegister(reg(ra_, node));
    1.11 +  }
    1.12 +  ConditionRegister as_ConditionRegister(PhaseRegAlloc *ra_, const Node *node, int idx) const {
    1.13 +    return ::as_ConditionRegister(reg(ra_, node, idx));
    1.14 +  }
    1.15 +#endif
    1.16  
    1.17    virtual intptr_t  constant() const;
    1.18    virtual relocInfo::relocType constant_reloc() const;

mercurial