summaryrefslogtreecommitdiff
path: root/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-20 17:53:51 +0000
committerChris Lattner <sabre@nondot.org>2010-01-20 17:53:51 +0000
commitf958dd2e1c12b70f6eef5a2aef4a6ac497a1b471 (patch)
tree6769dddaf3b27188405946227cd3e116f20a793d /lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp
parentf8526cb711ec96cd2d5aff30da57f65ae8e5b7b8 (diff)
downloadllvm-f958dd2e1c12b70f6eef5a2aef4a6ac497a1b471.tar.gz
llvm-f958dd2e1c12b70f6eef5a2aef4a6ac497a1b471.tar.bz2
llvm-f958dd2e1c12b70f6eef5a2aef4a6ac497a1b471.tar.xz
reduce redundant are's.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94008 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp')
-rw-r--r--lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp b/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp
index 115d041a70..9735873bad 100644
--- a/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp
+++ b/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp
@@ -178,7 +178,7 @@ void XCoreAsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) {
EmitGlobalConstant(C);
}
// The ABI requires that unsigned scalar types smaller than 32 bits
- // are are padded to 32 bits.
+ // are padded to 32 bits.
if (Size < 4)
OutStreamer.EmitZeros(4 - Size, 0);