diff options
author | Eric Christopher <echristo@apple.com> | 2010-10-17 06:07:26 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-10-17 06:07:26 +0000 |
commit | ec8bf972f5a270c80c7dca05151c9063be646e2b (patch) | |
tree | d92459aa7238909f551c23fd395828c7cfd50e9b | |
parent | f0c55a9b9797855a4c488c7a6a97d336a5bafd8e (diff) |
Allow more load types to be materialized through the allocas.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116683 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/ARMFastISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMFastISel.cpp b/lib/Target/ARM/ARMFastISel.cpp index d1f3aed761..b40cbce1da 100644 --- a/lib/Target/ARM/ARMFastISel.cpp +++ b/lib/Target/ARM/ARMFastISel.cpp @@ -523,7 +523,7 @@ unsigned ARMFastISel::TargetMaterializeAlloca(const AllocaInst *AI) { if (!FuncInfo.StaticAllocaMap.count(AI)) return 0; EVT VT; - if (!isTypeLegal(AI->getType(), VT)) return false; + if (!isLoadTypeLegal(AI->getType(), VT)) return false; DenseMap<const AllocaInst*, int>::iterator SI = FuncInfo.StaticAllocaMap.find(AI); |