1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 04:32:44 +01:00

[Orc] Remove extraneous 'typename'. This should cheer the bots up.

llvm-svn: 233168
This commit is contained in:
Lang Hames 2015-03-25 04:00:34 +00:00
parent 0568b3b823
commit 143ca2b384

View File

@ -70,7 +70,7 @@ public:
/// @brief Execute the callback for the given trampoline id. Called by the JIT
/// to compile functions on demand.
TargetAddress executeCompileCallback(TargetAddress TrampolineID) {
typename TrampolineMapT::iterator I = ActiveTrampolines.find(TrampolineID);
TrampolineMapT::iterator I = ActiveTrampolines.find(TrampolineID);
// FIXME: Also raise an error in the Orc error-handler when we finally have
// one.
if (I == ActiveTrampolines.end())