mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 02:36:06 +00:00
[AArch64] Reenable the PBQP test now that the leak issue has been fixed.
David Blaikie's commits r217563 & r217564, which added shared_ptr to the CostPool have fixed some memory leak issues exposed by the PBQP with coalescing constraints. The sanitizer bot was failing because of those leaks. Now that the leaks are gone, we can reenable the aarch64/pbqp test. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217580 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
993f84c9bc
commit
d1c83953b9
14
test/CodeGen/AArch64/PBQP.ll
Normal file
14
test/CodeGen/AArch64/PBQP.ll
Normal file
@ -0,0 +1,14 @@
|
||||
; 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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user