diff options
author | Hubert Tong <hubert.reinterpretcast@gmail.com> | 2019-08-13 14:43:34 +0000 |
---|---|---|
committer | Hubert Tong <hubert.reinterpretcast@gmail.com> | 2019-08-13 14:43:34 +0000 |
commit | 07e66137561fc7def181fe098d61e71b59267d26 (patch) | |
tree | 5edb0a224d189780c26318e48126e5a73ef7a644 /llvm | |
parent | 63ac3e5cbe0394ae3cf563f0d13f71ca07b129cf (diff) | |
download | bcm5719-llvm-07e66137561fc7def181fe098d61e71b59267d26.tar.gz bcm5719-llvm-07e66137561fc7def181fe098d61e71b59267d26.zip |
Revert r368691; test checked in without changes by accident
llvm-svn: 368699
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/test/CodeGen/PowerPC/aix-lr.ll | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/llvm/test/CodeGen/PowerPC/aix-lr.ll b/llvm/test/CodeGen/PowerPC/aix-lr.ll deleted file mode 100644 index ea92daf04f0..00000000000 --- a/llvm/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(...) |