Cleanup more unreferenced MutexGuard parameters on functions.
authorZachary Turner <zturner@google.com>
Mon, 16 Jun 2014 22:41:08 +0000 (22:41 +0000)
committerZachary Turner <zturner@google.com>
Mon, 16 Jun 2014 22:41:08 +0000 (22:41 +0000)
commitff7d1f4af7bbfaaf2309a5a6cff1e8f82317ff30
treec776ac76e34de2e1a0b65dfe28198f029377c7eb
parent0ab833c32299aef06c2c9c992792e839d8af9bee
Cleanup more unreferenced MutexGuard parameters on functions.

These parameters are intended to serve as sort of a contract that
you cannot access the functions outside of a mutex.  However, the
entire JIT class cannot be accessed outside of a mutex anyway, and
all methods acquire a lock as soon as they are entered.  Since the
containing class already is not intended to be thread-safe, it only
serves to add code clutter.

llvm-svn: 211071
llvm/lib/ExecutionEngine/JIT/JIT.cpp
llvm/lib/ExecutionEngine/JIT/JIT.h
llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp