diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2006-10-17 14:34:02 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2006-10-17 14:34:02 +0000 |
commit | 0d479ecbb132e324da27b674fea5b232115fe964 (patch) | |
tree | aa489ddd77f691b6db2577f395ad60e51cf6a501 /test/CodeGen | |
parent | a1a19f803c8fef05db627a8b73c909a50306e9d6 (diff) | |
download | external_llvm-0d479ecbb132e324da27b674fea5b232115fe964.zip external_llvm-0d479ecbb132e324da27b674fea5b232115fe964.tar.gz external_llvm-0d479ecbb132e324da27b674fea5b232115fe964.tar.bz2 |
add the immediate to the Offset in eliminateFrameIndex
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30998 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r-- | test/CodeGen/ARM/long.ll | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/long.ll b/test/CodeGen/ARM/long.ll index 834f068..b310bc0 100644 --- a/test/CodeGen/ARM/long.ll +++ b/test/CodeGen/ARM/long.ll @@ -70,3 +70,10 @@ entry: %tmp2 = mul ulong %tmp1, %tmp ret ulong %tmp2 } + +ulong %f10() { +entry: + %a = alloca ulong, align 8 + %retval = load ulong* %a + ret ulong %retval +} |