diff options
author | Chris Lattner <sabre@nondot.org> | 2007-04-20 22:40:05 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-04-20 22:40:05 +0000 |
commit | 6a309848c16c0623c01bf0251d571354173bae03 (patch) | |
tree | 3ff0f131b41718503ff361b1c1784d2d6645fa35 /llvm/lib/ExecutionEngine/JIT/JIT.h | |
parent | d9d3a4bbd61d02c53a673a6fdd319f58f340fb3b (diff) | |
download | bcm5719-llvm-6a309848c16c0623c01bf0251d571354173bae03.tar.gz bcm5719-llvm-6a309848c16c0623c01bf0251d571354173bae03.zip |
rename JIT::state -> JIT::jitstate to avoid shadowing ExecutionEngine::state
llvm-svn: 36286
Diffstat (limited to 'llvm/lib/ExecutionEngine/JIT/JIT.h')
-rw-r--r-- | llvm/lib/ExecutionEngine/JIT/JIT.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/JIT.h b/llvm/lib/ExecutionEngine/JIT/JIT.h index 95105c9b6f1..74a036ff2f0 100644 --- a/llvm/lib/ExecutionEngine/JIT/JIT.h +++ b/llvm/lib/ExecutionEngine/JIT/JIT.h @@ -54,7 +54,7 @@ class JIT : public ExecutionEngine { TargetJITInfo &TJI; // The JITInfo for the target we are compiling to MachineCodeEmitter *MCE; // MCE object - JITState state; + JITState jitstate; JIT(ModuleProvider *MP, TargetMachine &tm, TargetJITInfo &tji); public: |