| Index: src/IceTypes.h
|
| diff --git a/src/IceTypes.h b/src/IceTypes.h
|
| index 2b4c2cdeeb0f43427185fee953ef8cb6da2f59a3..2cf5e401fd9f3c8597c65a04b5c3b27cd822ad6c 100644
|
| --- a/src/IceTypes.h
|
| +++ b/src/IceTypes.h
|
| @@ -40,12 +40,7 @@ inline Ostream &operator<<(Ostream &Stream, TargetArch Arch) {
|
| return Stream << targetArchString(Arch);
|
| }
|
|
|
| -enum OptLevel {
|
| - Opt_m1,
|
| - Opt_0,
|
| - Opt_1,
|
| - Opt_2
|
| -};
|
| +enum OptLevel { Opt_m1, Opt_0, Opt_1, Opt_2 };
|
|
|
| size_t typeWidthInBytes(Type Ty);
|
| size_t typeAlignInBytes(Type Ty);
|
| @@ -114,6 +109,7 @@ inline StreamType &operator<<(StreamType &Str, const Type &Ty) {
|
| /// Models a type signature for a function.
|
| class FuncSigType {
|
| FuncSigType &operator=(const FuncSigType &Ty) = delete;
|
| +
|
| public:
|
| typedef std::vector<Type> ArgListType;
|
|
|
|
|