[AArch64] Temporarily desactivate the PBQP test, while I investigate some leaks in...
authorArnaud A. de Grandmaison <arnaud.degrandmaison@arm.com>
Wed, 10 Sep 2014 18:40:18 +0000 (18:40 +0000)
committerArnaud A. de Grandmaison <arnaud.degrandmaison@arm.com>
Wed, 10 Sep 2014 18:40:18 +0000 (18:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217531 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/AArch64/PBQP.ll [deleted file]

diff --git a/test/CodeGen/AArch64/PBQP.ll b/test/CodeGen/AArch64/PBQP.ll
deleted file mode 100644 (file)
index 491998e..0000000
+++ /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)
-