aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorSanjiv Gupta <sanjiv.gupta@microchip.com>2009-07-06 18:09:11 +0000
committerSanjiv Gupta <sanjiv.gupta@microchip.com>2009-07-06 18:09:11 +0000
commit9197df206b7ded3de3ac07b2260716ed2912bf23 (patch)
tree9802af866309dea6d4a8cf56467004870a0161c5 /lib
parentdba7652e45b59ee8920eba8416f4b934b860ad26 (diff)
downloadexternal_llvm-9197df206b7ded3de3ac07b2260716ed2912bf23.zip
external_llvm-9197df206b7ded3de3ac07b2260716ed2912bf23.tar.gz
external_llvm-9197df206b7ded3de3ac07b2260716ed2912bf23.tar.bz2
pic16 doesn't have a Data64bitsDirective. Set it NULL explicitly to tell the generic code to not pick the default.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74839 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/PIC16/PIC16TargetAsmInfo.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/PIC16/PIC16TargetAsmInfo.cpp b/lib/Target/PIC16/PIC16TargetAsmInfo.cpp
index a81c95f..979fadf 100644
--- a/lib/Target/PIC16/PIC16TargetAsmInfo.cpp
+++ b/lib/Target/PIC16/PIC16TargetAsmInfo.cpp
@@ -30,6 +30,7 @@ PIC16TargetAsmInfo(const PIC16TargetMachine &TM)
Data8bitsDirective = " db ";
Data16bitsDirective = " dw ";
Data32bitsDirective = " dl ";
+ Data64bitsDirective = NULL;
RomData8bitsDirective = " dw ";
RomData16bitsDirective = " rom_di ";
RomData32bitsDirective = " rom_dl ";