summaryrefslogtreecommitdiff
path: root/examples/Kaleidoscope
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-04-15 00:16:05 +0000
committerChris Lattner <sabre@nondot.org>2009-04-15 00:16:05 +0000
commitd25bff6d528e86683f7c3aed1b630776c33a3c71 (patch)
tree94914893b81374c472d61174ff4c4fc10803909b /examples/Kaleidoscope
parent1be3eccecbd2fa50ed9008ffee01f6351df5d8f7 (diff)
downloadllvm-d25bff6d528e86683f7c3aed1b630776c33a3c71.tar.gz
llvm-d25bff6d528e86683f7c3aed1b630776c33a3c71.tar.bz2
llvm-d25bff6d528e86683f7c3aed1b630776c33a3c71.tar.xz
silence a warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@69117 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples/Kaleidoscope')
-rw-r--r--examples/Kaleidoscope/toy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/Kaleidoscope/toy.cpp b/examples/Kaleidoscope/toy.cpp
index 87950d7e91..bec430c41f 100644
--- a/examples/Kaleidoscope/toy.cpp
+++ b/examples/Kaleidoscope/toy.cpp
@@ -1033,7 +1033,7 @@ static void HandleTopLevelExpression() {
// Cast it to the right type (takes no arguments, returns a double) so we
// can call it as a native function.
- double (*FP)() = (double (*)())FPtr;
+ double (*FP)() = (double (*)())(intptr_t)FPtr;
fprintf(stderr, "Evaluated to %f\n", FP());
}
} else {