mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-24 12:55:45 +00:00
[VectorUtils] Fix -Wunused-private-field after D67572
This commit is contained in:
parent
3ad4a89e80
commit
f9b49cea3a
@ -173,8 +173,6 @@ void getVectorVariantNames(const CallInst &CI,
|
||||
/// Helper class used to find the vector functions associated to a
|
||||
/// scalar CallInst.
|
||||
class VFDatabase {
|
||||
/// The CallInst for which we are looking for vector functions.
|
||||
const CallInst &CI;
|
||||
/// The Module of the CallInst CI.
|
||||
const Module *M;
|
||||
/// List of vector functions descritors associated to the call
|
||||
@ -223,8 +221,8 @@ public:
|
||||
|
||||
/// Constructor, requires a CallInst instance.
|
||||
VFDatabase(CallInst &CI)
|
||||
: CI(CI), M(CI.getModule()),
|
||||
ScalarToVectorMappings(VFDatabase::getMappings(CI)) {}
|
||||
: M(CI.getModule()), ScalarToVectorMappings(VFDatabase::getMappings(CI)) {
|
||||
}
|
||||
/// \defgroup VFDatabase query interface.
|
||||
///
|
||||
/// @{
|
||||
|
Loading…
x
Reference in New Issue
Block a user