mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Implement review feedback .. don't double search a set.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35957 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
df41353497
commit
57c5b1815d
@ -45,7 +45,6 @@
|
||||
#include "llvm/Config/config.h"
|
||||
#include <algorithm>
|
||||
#include <sstream>
|
||||
// #include <set>
|
||||
using namespace llvm;
|
||||
|
||||
namespace {
|
||||
@ -2430,11 +2429,10 @@ void CWriter::lowerIntrinsics(Function &F) {
|
||||
std::vector<Function*>::iterator I = prototypesToGen.begin();
|
||||
std::vector<Function*>::iterator E = prototypesToGen.end();
|
||||
for ( ; I != E; ++I) {
|
||||
if (intrinsicPrototypesAlreadyGenerated.count(*I) == 0) {
|
||||
if (intrinsicPrototypesAlreadyGenerated.insert(*I).second) {
|
||||
Out << '\n';
|
||||
printFunctionSignature(*I, true);
|
||||
Out << ";\n";
|
||||
intrinsicPrototypesAlreadyGenerated.insert(*I);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user