diff -r 6021152f9ff3 -r fc8a3d56cd0c test/compiler/intrinsics/bmi/verifycode/LZcntTestL.java --- a/test/compiler/intrinsics/bmi/verifycode/LZcntTestL.java Mon Feb 03 06:40:55 2020 +0000 +++ b/test/compiler/intrinsics/bmi/verifycode/LZcntTestL.java Mon Feb 17 08:53:34 2020 +0000 @@ -49,6 +49,8 @@ public static void main(String[] args) throws Exception { // j.l.Integer and Long should be loaded to allow a compilation of the methods that use their methods System.out.println("classes java.lang.Long should be loaded. Proof: " + Long.class); + // Avoid uncommon traps. + System.out.println("Num leading zeroes: " + new TestLzcntL.LzcntLExpr().longExpr(12341341)); BmiIntrinsicBase.verifyTestCase(LZcntTestL::new, TestLzcntL.LzcntLExpr.class.getDeclaredMethods()); } }