From 50196a89d1bc812e34e704bd7ff3b25a96021d38 Mon Sep 17 00:00:00 2001 From: "Arnaud A. de Grandmaison" Date: Wed, 10 Sep 2014 18:40:18 +0000 Subject: [PATCH] [AArch64] Temporarily desactivate the PBQP test, while I investigate some leaks in the allocator git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217531 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/AArch64/PBQP.ll | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 test/CodeGen/AArch64/PBQP.ll diff --git a/test/CodeGen/AArch64/PBQP.ll b/test/CodeGen/AArch64/PBQP.ll deleted file mode 100644 index 491998e1e30..00000000000 --- a/test/CodeGen/AArch64/PBQP.ll +++ /dev/null @@ -1,14 +0,0 @@ -; RUN: llc -mtriple=aarch64-linux-gnu -mcpu=cortex-a57 -aarch64-pbqp -o - %s | FileCheck %s - -define i32 @foo(i32 %a) { -; CHECK-LABEL: foo: -; CHECK: bl bar -; CHECK-NEXT: bl baz - %call = call i32 @bar(i32 %a) - %call1 = call i32 @baz(i32 %call) - ret i32 %call1 -} - -declare i32 @bar(i32) -declare i32 @baz(i32) - -- 2.34.1