diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-08-10 17:35:42 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-08-10 17:35:42 +0000 |
| commit | 7b01bf612549ff49c6800de1f94c7be2dac34796 (patch) | |
| tree | a3b6bc8b74daa96c63792e3bdcbc1965422cc5fd | |
| parent | 2a26e351fc0750b62ae7ab5c4253650923aeccc9 (diff) | |
| download | bcm5719-llvm-7b01bf612549ff49c6800de1f94c7be2dac34796.tar.gz bcm5719-llvm-7b01bf612549ff49c6800de1f94c7be2dac34796.zip | |
fix some warnings for the MSVC build, by Yonggang Luo!
llvm-svn: 78571
| -rw-r--r-- | llvm/lib/Target/PIC16/PIC16AsmPrinter.cpp | 2 | ||||
| -rw-r--r-- | llvm/tools/llvm-stub/llvm-stub.c | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/Target/PIC16/PIC16AsmPrinter.cpp b/llvm/lib/Target/PIC16/PIC16AsmPrinter.cpp index 7a5fdc853cd..39ebfa44399 100644 --- a/llvm/lib/Target/PIC16/PIC16AsmPrinter.cpp +++ b/llvm/lib/Target/PIC16/PIC16AsmPrinter.cpp @@ -35,7 +35,7 @@ using namespace llvm; PIC16AsmPrinter::PIC16AsmPrinter(formatted_raw_ostream &O, TargetMachine &TM, const TargetAsmInfo *T, bool V) : AsmPrinter(O, TM, T, V), DbgInfo(O, T) { - PTLI = static_cast<const PIC16TargetLowering*>(TM.getTargetLowering()); + PTLI = static_cast<PIC16TargetLowering*>(TM.getTargetLowering()); PTAI = static_cast<const PIC16TargetAsmInfo*>(T); PTOF = (PIC16TargetObjectFile*)&PTLI->getObjFileLowering(); } diff --git a/llvm/tools/llvm-stub/llvm-stub.c b/llvm/tools/llvm-stub/llvm-stub.c index e5624a9c9b0..366e13c9102 100644 --- a/llvm/tools/llvm-stub/llvm-stub.c +++ b/llvm/tools/llvm-stub/llvm-stub.c @@ -64,8 +64,7 @@ int main(int argc, char** argv) { memcpy(Args+2, argv+1, sizeof(char*)*argc); /* Run the JIT. */ - execvp(Interp, (char *const*)Args); - + execvp(Interp, (char **)Args); /* if _execv returns, the JIT could not be started. */ fprintf(stderr, "Could not execute the LLVM JIT. Either add 'lli' to your" " path, or set the\ninterpreter you want to use in the LLVMINTERP " |

