projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6bf30ab
)
Initialize a local variable.
author
Ted Kremenek
<kremenek@apple.com>
Thu, 1 May 2008 17:08:00 +0000
(17:08 +0000)
committer
Ted Kremenek
<kremenek@apple.com>
Thu, 1 May 2008 17:08:00 +0000
(17:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50527
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/Bitcode/Deserialize.h
patch
|
blob
|
history
diff --git
a/include/llvm/Bitcode/Deserialize.h
b/include/llvm/Bitcode/Deserialize.h
index 6e20434e6c7d13a95839797aa14134d1778beacd..8c9ea89d15225817f73fd14b3bbeee0262be7262 100644
(file)
--- a/
include/llvm/Bitcode/Deserialize.h
+++ b/
include/llvm/Bitcode/Deserialize.h
@@
-436,7
+436,7
@@
public:
}
template <typename T>
- T* ReadPtr() { T* x; ReadPtr<T>(x,false); return x; }
+ T* ReadPtr() { T* x
= 0
; ReadPtr<T>(x,false); return x; }
void ReadUIntPtr(uintptr_t& PtrRef, const SerializedPtrID& PtrID,
bool AllowBackpatch = true);