diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2007-03-06 17:24:31 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2007-03-06 17:24:31 +0000 |
| commit | 8a9ae48d53031aefef8f57aa3f768c4ce1459361 (patch) | |
| tree | 18ec197d8268fbbd62b3bcd3fb687fce5da04ec4 /llvm/examples/HowToUseJIT/HowToUseJIT.cpp | |
| parent | 84ffc223f169cc584852b263ed906d6864a6f85c (diff) | |
| download | bcm5719-llvm-8a9ae48d53031aefef8f57aa3f768c4ce1459361.tar.gz bcm5719-llvm-8a9ae48d53031aefef8f57aa3f768c4ce1459361.zip | |
Adjust for changes in GenericValue type.
llvm-svn: 34969
Diffstat (limited to 'llvm/examples/HowToUseJIT/HowToUseJIT.cpp')
| -rw-r--r-- | llvm/examples/HowToUseJIT/HowToUseJIT.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/examples/HowToUseJIT/HowToUseJIT.cpp b/llvm/examples/HowToUseJIT/HowToUseJIT.cpp index 8948b3ab1ae..621621dc46d 100644 --- a/llvm/examples/HowToUseJIT/HowToUseJIT.cpp +++ b/llvm/examples/HowToUseJIT/HowToUseJIT.cpp @@ -107,6 +107,6 @@ int main() { GenericValue gv = EE->runFunction(FooF, noargs); // Import result of execution: - std::cout << "Result: " << gv.Int32Val << "\n"; + std::cout << "Result: " << gv.IntVal.toString(10) << "\n"; return 0; } |

