diff options
author | Jan Wen Voung <jvoung@google.com> | 2013-03-12 16:27:52 +0000 |
---|---|---|
committer | Jan Wen Voung <jvoung@google.com> | 2013-03-12 16:27:52 +0000 |
commit | 4323665bd857c0527b50463d415d9e76493ad2fe (patch) | |
tree | 041705048758b7962b7ec89eadc50e76513393c8 /test/CodeGen/ARM/Stats/addrmode.ll | |
parent | a15e708b1b05cfb9d3d126e12f508e37adc25fdb (diff) |
Revert the test moves from 176733. Use "REQUIRES: asserts" instead.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176873 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/Stats/addrmode.ll')
-rw-r--r-- | test/CodeGen/ARM/Stats/addrmode.ll | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/test/CodeGen/ARM/Stats/addrmode.ll b/test/CodeGen/ARM/Stats/addrmode.ll deleted file mode 100644 index 6da90897b9..0000000000 --- a/test/CodeGen/ARM/Stats/addrmode.ll +++ /dev/null @@ -1,15 +0,0 @@ -; RUN: llc < %s -march=arm -stats 2>&1 | grep asm-printer | grep 4 - -define i32 @t1(i32 %a) { - %b = mul i32 %a, 9 - %c = inttoptr i32 %b to i32* - %d = load i32* %c - ret i32 %d -} - -define i32 @t2(i32 %a) { - %b = mul i32 %a, -7 - %c = inttoptr i32 %b to i32* - %d = load i32* %c - ret i32 %d -} |