comparison src/share/vm/graal/graalCompiler.hpp @ 6962:e9f69041ac38

Merge.
author Doug Simon <doug.simon@oracle.com>
date Sun, 18 Nov 2012 21:30:35 +0100
parents a0f4001cf53c
children 9ba90252ce08
comparison
equal deleted inserted replaced
6961:72b8f81ef9c4 6962:e9f69041ac38
48 48
49 virtual const char* name() { return "G"; } 49 virtual const char* name() { return "G"; }
50 50
51 // Native / OSR not supported 51 // Native / OSR not supported
52 virtual bool supports_native() { return true; } 52 virtual bool supports_native() { return true; }
53 virtual bool supports_osr () { return false; } 53 virtual bool supports_osr () { return true; }
54 54
55 // Pretend to be C1 55 // Pretend to be C1
56 bool is_c1 () { return true; } 56 bool is_c1 () { return true; }
57 bool is_c2 () { return false; } 57 bool is_c2 () { return false; }
58 58