diff options
author | Chris Lattner <sabre@nondot.org> | 2010-11-15 05:19:05 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-11-15 05:19:05 +0000 |
commit | 2ac190238e88b21e716e2853900b5076c9013410 (patch) | |
tree | 96d31431369e0b53130604939ace6898f13b505d /lib/Target/ARM/ARMAsmPrinter.cpp | |
parent | 513dbf1af06d0bc530dd6f17da320d2fb40b3a28 (diff) | |
download | external_llvm-2ac190238e88b21e716e2853900b5076c9013410.zip external_llvm-2ac190238e88b21e716e2853900b5076c9013410.tar.gz external_llvm-2ac190238e88b21e716e2853900b5076c9013410.tar.bz2 |
add fields to the .td files unconditionally, simplifying tblgen a bit.
Switch the ARM backend to use 'let' instead of 'set' with this change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119120 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMAsmPrinter.cpp')
-rw-r--r-- | lib/Target/ARM/ARMAsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMAsmPrinter.cpp b/lib/Target/ARM/ARMAsmPrinter.cpp index 3a97a69..e7ac48c 100644 --- a/lib/Target/ARM/ARMAsmPrinter.cpp +++ b/lib/Target/ARM/ARMAsmPrinter.cpp @@ -200,7 +200,7 @@ namespace { MachineLocation getDebugValueLocation(const MachineInstr *MI) const { MachineLocation Location; - assert (MI->getNumOperands() == 4 && "Invalid no. of machine operands!"); + assert(MI->getNumOperands() == 4 && "Invalid no. of machine operands!"); // Frame address. Currently handles register +- offset only. if (MI->getOperand(0).isReg() && MI->getOperand(1).isImm()) Location.set(MI->getOperand(0).getReg(), MI->getOperand(1).getImm()); |