diff --git a/interface/trsv.c b/interface/trsv.c index 6a6e8f8ba..a054d8eeb 100644 --- a/interface/trsv.c +++ b/interface/trsv.c @@ -188,12 +188,6 @@ void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo, if (n == 0) return; - if (incx == 1 && trans == 0 && n < 50) { - buffer = NULL; - (trsv[(trans<<2) | (uplo<<1) | unit])(n, a, lda, x, incx, buffer); - return; - } - IDEBUG_START; FUNCTION_PROFILE_START();