From 515e6932a4d7d2afb4befde7a617208e60dd53e5 Mon Sep 17 00:00:00 2001 From: Hubert Tong Date: Tue, 13 Aug 2019 14:43:34 +0000 Subject: [PATCH] Revert r368691; test checked in without changes by accident git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@368699 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/PowerPC/aix-lr.ll | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 test/CodeGen/PowerPC/aix-lr.ll diff --git a/test/CodeGen/PowerPC/aix-lr.ll b/test/CodeGen/PowerPC/aix-lr.ll deleted file mode 100644 index ea92daf04f0..00000000000 --- a/test/CodeGen/PowerPC/aix-lr.ll +++ /dev/null @@ -1,32 +0,0 @@ -; RUN: llc -verify-machineinstrs -mtriple powerpc-ibm-aix-xcoff < %s | \ -; RUN: FileCheck --check-prefix=32BIT %s - -; RUN: llc -verify-machineinstrs -mtriple powerpc64-ibm-aix-xcoff < %s | \ -; RUN: FileCheck --check-prefix=64BIT %s - -define void @bar() { -entry: - -; 32BIT: mflr 0 -; 32BIT: stw 0, 8(1) -; 32BIT: stwu 1, -64(1) -; 32BIT: bl .foo -; 32BIT: nop -; 32BIT: addi 1, 1, 64 -; 32BIT: lwz 0, 8(1) -; 32BIT: mtlr 0 - -; 64BIT: mflr 0 -; 64BIT: std 0, 16(1) -; 64BIT: stdu 1, -112(1) -; 64BIT: bl .foo -; 64BIT: nop -; 64BIT: addi 1, 1, 112 -; 64BIT: ld 0, 16(1) -; 64BIT: mtlr 0 - - call void bitcast (void (...)* @foo to void ()*)() - ret void -} - -declare void @foo(...) -- 2.40.0