diff options
Diffstat (limited to 'lib/Bytecode/Reader/Analyzer.cpp')
-rw-r--r-- | lib/Bytecode/Reader/Analyzer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Bytecode/Reader/Analyzer.cpp b/lib/Bytecode/Reader/Analyzer.cpp index 75b3ca7..aef482a 100644 --- a/lib/Bytecode/Reader/Analyzer.cpp +++ b/lib/Bytecode/Reader/Analyzer.cpp @@ -427,7 +427,7 @@ public: const VectorType* PT, Constant**Elements, unsigned NumElts, unsigned TypeSlot, - Constant* PackedVal) + Constant* VectorVal) { if (os) { *os << " PACKD: "; @@ -439,7 +439,7 @@ public: *os << "\n"; } *os << " Value="; - PackedVal->print(*os); + VectorVal->print(*os); *os << "\n"; } |