mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-23 04:16:42 +00:00
fix uninit member, thanks to Benjamin Kramer for identifying the bug.
llvm-svn: 93691
This commit is contained in:
parent
f7c6508544
commit
5607355614
@ -49,7 +49,7 @@ private:
|
||||
public:
|
||||
// Mangler ctor - if a prefix is specified, it will be prepended onto all
|
||||
// symbols.
|
||||
Mangler(const MCAsmInfo &mai) : MAI(mai) {}
|
||||
Mangler(const MCAsmInfo &mai) : MAI(mai), NextAnonGlobalID(0) {}
|
||||
|
||||
/// getNameWithPrefix - Fill OutName with the name of the appropriate prefix
|
||||
/// and the specified global variable's name. If the global variable doesn't
|
||||
|
Loading…
x
Reference in New Issue
Block a user