diff --git a/include/llvm/PassSupport.h b/include/llvm/PassSupport.h index bc2b7da8a24..a896ff04a1f 100644 --- a/include/llvm/PassSupport.h +++ b/include/llvm/PassSupport.h @@ -56,7 +56,7 @@ public: /// PassInfo ctor - Do not call this directly, this should only be invoked /// through RegisterPass. PassInfo(const char *name, const char *arg, const std::type_info &ti, - unsigned pt, Pass *(*normal)() = 0, + unsigned char pt, Pass *(*normal)() = 0, Pass *(*targetctor)(TargetMachine &) = 0) : PassName(name), PassArgument(arg), TypeInfo(ti), PassType(pt), NormalCtor(normal), TargetCtor(targetctor) {