diff --git a/test/Hessian/Pointers.C b/test/Hessian/Pointers.C index ff18d852b..50fa6db78 100644 --- a/test/Hessian/Pointers.C +++ b/test/Hessian/Pointers.C @@ -3,7 +3,6 @@ // RUN: %cladclang -Xclang -plugin-arg-clad -Xclang -enable-tbr %s -I%S/../../include -oPointers.out // RUN: ./Pointers.out | FileCheck -check-prefix=CHECK-EXEC %s // CHECK-NOT: {{.*error|warning|note:.*}} -// XFAIL: target={{i586.*}} #include "clad/Differentiator/Differentiator.h" @@ -54,8 +53,8 @@ double nonMemFn(double i, double j) { // CHECK-NEXT: } // CHECK: void nonMemFn_hessian(double i, double j, clad::array_ref hessianMatrix) { -// CHECK-NEXT: nonMemFn_darg0_grad(i, j, hessianMatrix.slice(0UL, 1UL), hessianMatrix.slice(1UL, 1UL)); -// CHECK-NEXT: nonMemFn_darg1_grad(i, j, hessianMatrix.slice(2UL, 1UL), hessianMatrix.slice(3UL, 1UL)); +// CHECK-NEXT: nonMemFn_darg0_grad(i, j, hessianMatrix.slice({{0U|0UL}}, {{1U|1UL}}), hessianMatrix.slice({{1U|1UL}}, {{1U|1UL}})); +// CHECK-NEXT: nonMemFn_darg1_grad(i, j, hessianMatrix.slice({{2U|2UL}}, {{1U|1UL}}), hessianMatrix.slice({{3U|3UL}}, {{1U|1UL}})); // CHECK-NEXT: } #define NON_MEM_FN_TEST(var)\