diff options
author | Sanjiv Gupta <sanjiv.gupta@microchip.com> | 2009-07-06 18:09:11 +0000 |
---|---|---|
committer | Sanjiv Gupta <sanjiv.gupta@microchip.com> | 2009-07-06 18:09:11 +0000 |
commit | 0a1e2787a0d46e7e6ca12ef678fabd1063c4cdbc (patch) | |
tree | 4c10d30a169c6186a65a8c5a8297d8d2fab38020 | |
parent | cf5ea6c26febd7fdbaba8802f3b81abff6786de2 (diff) | |
download | bcm5719-llvm-0a1e2787a0d46e7e6ca12ef678fabd1063c4cdbc.tar.gz bcm5719-llvm-0a1e2787a0d46e7e6ca12ef678fabd1063c4cdbc.zip |
pic16 doesn't have a Data64bitsDirective. Set it NULL explicitly to tell the generic code to not pick the default.
llvm-svn: 74839
-rw-r--r-- | llvm/lib/Target/PIC16/PIC16TargetAsmInfo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/PIC16/PIC16TargetAsmInfo.cpp b/llvm/lib/Target/PIC16/PIC16TargetAsmInfo.cpp index a81c95f1594..979fadfc901 100644 --- a/llvm/lib/Target/PIC16/PIC16TargetAsmInfo.cpp +++ b/llvm/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 "; |