[llvm] r202317 - Fix a type error that crept into r202313.
Adrian Prantl
aprantl at apple.com
Wed Feb 26 15:46:39 PST 2014
Author: adrian
Date: Wed Feb 26 17:46:39 2014
New Revision: 202317
URL: http://llvm.org/viewvc/llvm-project?rev=202317&view=rev
Log:
Fix a type error that crept into r202313.
Modified:
llvm/trunk/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
Modified: llvm/trunk/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/AsmPrinter.cpp?rev=202317&r1=202316&r2=202317&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/AsmPrinter.cpp (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/AsmPrinter.cpp Wed Feb 26 17:46:39 2014
@@ -888,7 +888,7 @@ static void emitDwarfRegOp(const AsmPrin
/// Emit an (double-)indirect dwarf register operation.
static void emitDwarfRegOpIndirect(const AsmPrinter &AP,
- int Reg, unsigned Offset, bool Deref) {
+ int Reg, int Offset, bool Deref) {
assert(Reg >= 0);
if (Reg < 32) {
AP.OutStreamer.AddComment(dwarf::
More information about the llvm-commits
mailing list