Skip to content

Commit

Permalink
Fix FirstDerivative/BasicArithmeticMulDiv test
Browse files Browse the repository at this point in the history
  • Loading branch information
MihailMihov committed Mar 19, 2024
1 parent 95e16f5 commit 4d7c7cc
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions test/FirstDerivative/BasicArithmeticMulDiv.C
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// RUN: ./BasicArithmeticMulDiv.out | FileCheck -check-prefix=CHECK-EXEC %s

//CHECK-NOT: {{.*error|warning|note:.*}}
// XFAIL: target={{i586.*}}

#include "clad/Differentiator/Differentiator.h"

Expand Down Expand Up @@ -116,9 +115,9 @@ double m_11(double x) {
// CHECK-NEXT: double _d_x = 1;
// CHECK-NEXT: const size_t _d_maxN = 0;
// CHECK-NEXT: const size_t maxN = 53;
// CHECK-NEXT: bool _t0 = maxN < 64UL;
// CHECK-NEXT: const size_t _d_m = _t0 ? _d_maxN : 0UL;
// CHECK-NEXT: const size_t m = _t0 ? maxN : 64UL;
// CHECK-NEXT: bool _t0 = maxN < {{64U|64UL}};
// CHECK-NEXT: const size_t _d_m = _t0 ? _d_maxN : {{0U|0UL}};
// CHECK-NEXT: const size_t m = _t0 ? maxN : {{64U|64UL}};
// CHECK-NEXT: return _d_x * m + x * _d_m;
// CHECK-NEXT: }

Expand Down

0 comments on commit 4d7c7cc

Please sign in to comment.