[llvm-branch-commits] [llvm-branch] r164500 - /llvm/branches/R600/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
Tom Stellard
thomas.stellard at amd.com
Mon Sep 24 08:53:15 PDT 2012
Author: tstellar
Date: Mon Sep 24 10:51:37 2012
New Revision: 164500
URL: http://llvm.org/viewvc/llvm-project?rev=164500&view=rev
Log:
Add comment.
Modified:
llvm/branches/R600/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
Modified: llvm/branches/R600/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/R600/lib/Target/ARM/AsmParser/ARMAsmParser.cpp?rev=164500&r1=164499&r2=164500&view=diff
==============================================================================
--- llvm/branches/R600/lib/Target/ARM/AsmParser/ARMAsmParser.cpp (original)
+++ llvm/branches/R600/lib/Target/ARM/AsmParser/ARMAsmParser.cpp Mon Sep 24 10:51:37 2012
@@ -487,7 +487,8 @@
SMLoc getStartLoc() const { return StartLoc; }
/// getEndLoc - Get the location of the last token of this operand.
SMLoc getEndLoc() const { return EndLoc; }
-
+ /// getLocRange - Get the range between the first and last token of this
+ /// operand.
SMRange getLocRange() const { return SMRange(StartLoc, EndLoc); }
ARMCC::CondCodes getCondCode() const {
More information about the llvm-branch-commits
mailing list