diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-02 21:10:48 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-02 21:10:48 +0000 |
commit | dabbf17b47031dcf924d76ebe3d0caac5ef51b1f (patch) | |
tree | 0d2cb5d36d66e28f013b113e2ad804af2ce5331e /llvm/lib/ExecutionEngine/Interpreter/Execution.cpp | |
parent | 58185f2df9c77793ed9156fdd5c3b932f5485039 (diff) | |
download | bcm5719-llvm-dabbf17b47031dcf924d76ebe3d0caac5ef51b1f.tar.gz bcm5719-llvm-dabbf17b47031dcf924d76ebe3d0caac5ef51b1f.zip |
Expose TD to ExternalFunctions.cpp
llvm-svn: 4020
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Execution.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Execution.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp b/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp index ac011d743be..189d2b71eab 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp +++ b/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp @@ -38,7 +38,7 @@ AbortOnExceptions("abort-on-exception", // Create a TargetData structure to handle memory addressing and size/alignment // computations // -static TargetData TD("lli Interpreter"); +TargetData TD("lli Interpreter"); CachedWriter CW; // Object to accelerate printing of LLVM |