summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorMatt Arsenault <Matthew.Arsenault@amd.com>2014-12-03 03:12:13 +0000
committerMatt Arsenault <Matthew.Arsenault@amd.com>2014-12-03 03:12:13 +0000
commitfb13b22d9a28f4ed3e048e4cc38c2099466d5ca2 (patch)
tree626d6073ef6195a2d5ad30c70b254c7ec3a9c5b4 /llvm/lib
parent2e8a6219fc0159a6e95845e401ea67b720dc2ece (diff)
downloadbcm5719-llvm-fb13b22d9a28f4ed3e048e4cc38c2099466d5ca2.tar.gz
bcm5719-llvm-fb13b22d9a28f4ed3e048e4cc38c2099466d5ca2.zip
R600/SI: Change mubuf offsets to print as decimal
This matches SC's behavior. llvm-svn: 223194
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Target/R600/InstPrinter/AMDGPUInstPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/R600/InstPrinter/AMDGPUInstPrinter.cpp b/llvm/lib/Target/R600/InstPrinter/AMDGPUInstPrinter.cpp
index 64fe726ee3a..12d077c0464 100644
--- a/llvm/lib/Target/R600/InstPrinter/AMDGPUInstPrinter.cpp
+++ b/llvm/lib/Target/R600/InstPrinter/AMDGPUInstPrinter.cpp
@@ -74,7 +74,7 @@ void AMDGPUInstPrinter::printMBUFOffset(const MCInst *MI, unsigned OpNo,
raw_ostream &O) {
if (MI->getOperand(OpNo).getImm()) {
O << " offset:";
- printU16ImmOperand(MI, OpNo, O);
+ printU16ImmDecOperand(MI, OpNo, O);
}
}
OpenPOWER on IntegriCloud