This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 0xa99544a4ba5b769c86ea9ee2da707a76595a5192 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| exclude Main main | |
| dontinline Main doTest | |
| compileonly Main doTest | |
| compileonly FxIntrinsics * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff -r 4d8787136e08 src/share/vm/c1/c1_Canonicalizer.cpp | |
| --- a/src/share/vm/c1/c1_Canonicalizer.cpp Fri May 25 11:39:13 2012 -0700 | |
| +++ b/src/share/vm/c1/c1_Canonicalizer.cpp Wed May 30 03:21:56 2012 +0800 | |
| @@ -451,6 +451,28 @@ | |
| } | |
| break; | |
| } | |
| + case vmIntrinsics::_isInstance : { | |
| + assert(x->number_of_arguments() == 2, "wrong type"); | |
| + |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @Repository | |
| public interface FooRepository<Foo> extends JpaRepository<Foo, Long>, JpaSpecificationExecutor<Foo> { | |
| // findByXXX | |
| @EntityGraph("prefetchViewItems") | |
| public Page<Foo> findBySpecification(Specification<Foo> spec, Pageable pageable); // error | |
| } |