diff options
author | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2009-06-01 19:57:37 +0000 |
---|---|---|
committer | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2009-06-01 19:57:37 +0000 |
commit | 9fd794bebf9c82afc124b94ae9322ee4b3f5a767 (patch) | |
tree | fa7888be16c89ed971a3f684604405a6b0a2db83 /llvm/lib/ExecutionEngine/JIT | |
parent | 2afc641e0437bf4122b4e3b07627e17cd9064740 (diff) | |
download | bcm5719-llvm-9fd794bebf9c82afc124b94ae9322ee4b3f5a767.tar.gz bcm5719-llvm-9fd794bebf9c82afc124b94ae9322ee4b3f5a767.zip |
Fix new CodeEmitter stuff to follow LLVM codying style. Patch by Aaron Gray
llvm-svn: 72697
Diffstat (limited to 'llvm/lib/ExecutionEngine/JIT')
-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 9924d0bfa9e..3ccb2dd8126 100644 --- a/llvm/lib/ExecutionEngine/JIT/JIT.h +++ b/llvm/lib/ExecutionEngine/JIT/JIT.h @@ -51,7 +51,7 @@ public: class JIT : public ExecutionEngine { TargetMachine &TM; // The current target we are compiling to TargetJITInfo &TJI; // The JITInfo for the target we are compiling to - JITCodeEmitter *JCE; // JCE object + JITCodeEmitter *JCE; // JCE object JITState *jitstate; |