diff options
author | Chris Lattner <sabre@nondot.org> | 2004-08-17 06:48:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-08-17 06:48:34 +0000 |
commit | 404bc3dcafbdec7170c7302a78e13908e7ca2d22 (patch) | |
tree | 8baea45f34451c93498bdef59cf9f89deab8a4a6 | |
parent | 9fa0fc4d5e2c003f7c1a94d72e80cdc3c26da46e (diff) | |
download | bcm5719-llvm-404bc3dcafbdec7170c7302a78e13908e7ca2d22.tar.gz bcm5719-llvm-404bc3dcafbdec7170c7302a78e13908e7ca2d22.zip |
Add missing \t
llvm-svn: 15871
-rw-r--r-- | llvm/include/llvm/CodeGen/AsmPrinter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/CodeGen/AsmPrinter.h b/llvm/include/llvm/CodeGen/AsmPrinter.h index 3d927753dee..b295bdac0a8 100644 --- a/llvm/include/llvm/CodeGen/AsmPrinter.h +++ b/llvm/include/llvm/CodeGen/AsmPrinter.h @@ -74,7 +74,7 @@ namespace llvm { AsciiDirective("\t.ascii\t"), Data8bitsDirective("\t.byte\t"), Data16bitsDirective("\t.short\t"), - Data32bitsDirective(".long\t"), + Data32bitsDirective("\t.long\t"), Data64bitsDirective("\t.quad\t") { } /// doInitialization - Set up the AsmPrinter when we are working on a new |