mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-29 14:40:25 +00:00
Add an arg to insertVal to allow us to prevent builtin types from being ignored
when they are inserted git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@302 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c628b1790d
commit
a25809dda4
@ -54,7 +54,7 @@ public:
|
||||
protected:
|
||||
// insertVal - Insert a value into the value table...
|
||||
//
|
||||
void insertVal(const Value *D);
|
||||
void insertVal(const Value *D, bool dontIgnore = false);
|
||||
|
||||
// visitMethod - This member is called after the constant pool has been
|
||||
// processed. The default implementation of this is a noop.
|
||||
|
@ -54,7 +54,7 @@ public:
|
||||
protected:
|
||||
// insertVal - Insert a value into the value table...
|
||||
//
|
||||
void insertVal(const Value *D);
|
||||
void insertVal(const Value *D, bool dontIgnore = false);
|
||||
|
||||
// visitMethod - This member is called after the constant pool has been
|
||||
// processed. The default implementation of this is a noop.
|
||||
|
@ -54,7 +54,7 @@ public:
|
||||
protected:
|
||||
// insertVal - Insert a value into the value table...
|
||||
//
|
||||
void insertVal(const Value *D);
|
||||
void insertVal(const Value *D, bool dontIgnore = false);
|
||||
|
||||
// visitMethod - This member is called after the constant pool has been
|
||||
// processed. The default implementation of this is a noop.
|
||||
|
Loading…
Reference in New Issue
Block a user