mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
add missing *, patch by Peter O'Gorman!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75259 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2e4ddf6218
commit
8b16f70a1a
@ -853,7 +853,7 @@ namespace llvm {
|
||||
template<typename T>
|
||||
inline T **unwrap(LLVMValueRef *Vals, unsigned Length) {
|
||||
#if DEBUG
|
||||
for (LLVMValueRef *I = Vals, E = Vals + Length; I != E; ++I)
|
||||
for (LLVMValueRef *I = Vals, *E = Vals + Length; I != E; ++I)
|
||||
cast<T>(*I);
|
||||
#endif
|
||||
return reinterpret_cast<T**>(Vals);
|
||||
|
Loading…
Reference in New Issue
Block a user