[llvm-commits] [llvm] r74839 - /llvm/trunk/lib/Target/PIC16/PIC16TargetAsmInfo.cpp

Sanjiv Gupta sanjiv.gupta at microchip.com
Mon Jul 6 11:09:15 PDT 2009


Author: sgupta
Date: Mon Jul  6 13:09:11 2009
New Revision: 74839

URL: http://llvm.org/viewvc/llvm-project?rev=74839&view=rev
Log:
pic16 doesn't have a Data64bitsDirective. Set it NULL explicitly to tell the generic code to not pick the default.

Modified:
    llvm/trunk/lib/Target/PIC16/PIC16TargetAsmInfo.cpp

Modified: llvm/trunk/lib/Target/PIC16/PIC16TargetAsmInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/PIC16/PIC16TargetAsmInfo.cpp?rev=74839&r1=74838&r2=74839&view=diff

==============================================================================
--- llvm/trunk/lib/Target/PIC16/PIC16TargetAsmInfo.cpp (original)
+++ llvm/trunk/lib/Target/PIC16/PIC16TargetAsmInfo.cpp Mon Jul  6 13:09:11 2009
@@ -30,6 +30,7 @@
   Data8bitsDirective = " db ";
   Data16bitsDirective = " dw ";
   Data32bitsDirective = " dl ";
+  Data64bitsDirective = NULL;
   RomData8bitsDirective = " dw ";
   RomData16bitsDirective = " rom_di ";
   RomData32bitsDirective = " rom_dl ";





More information about the llvm-commits mailing list