mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-07 12:28:24 +00:00
fix a warning
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49282 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -811,7 +811,7 @@ namespace llvm {
|
|||||||
template<class ConstantClass, class TypeClass, class ValType>
|
template<class ConstantClass, class TypeClass, class ValType>
|
||||||
struct VISIBILITY_HIDDEN ConstantCreator {
|
struct VISIBILITY_HIDDEN ConstantCreator {
|
||||||
static ConstantClass *create(const TypeClass *Ty, const ValType &V) {
|
static ConstantClass *create(const TypeClass *Ty, const ValType &V) {
|
||||||
unsigned FIXME; // = traits<ValType>::uses(V)
|
unsigned FIXME = 0; // = traits<ValType>::uses(V)
|
||||||
return new(FIXME) ConstantClass(Ty, V);
|
return new(FIXME) ConstantClass(Ty, V);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user