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)
commit298ff80849de645ab7afb92004759350309de400
tree836d354cf7a3d7a05d554a01516774fbf6aa210e
parent4641b6b42730f4e8542a1e96d77047fd903d97ad
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.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211071 91177308-0d34-0410-b5e6-96231b3b80d8
lib/ExecutionEngine/JIT/JIT.cpp
lib/ExecutionEngine/JIT/JIT.h
lib/ExecutionEngine/JIT/JITEmitter.cpp