Index: src/IceTargetLoweringX8632.h |
diff --git a/src/IceTargetLoweringX8632.h b/src/IceTargetLoweringX8632.h |
index 37f7fef6791a777d65d963af5e8df227a724d4b1..e2291a37e9fc2ab41e20b996ed0c6419e5473b3a 100644 |
--- a/src/IceTargetLoweringX8632.h |
+++ b/src/IceTargetLoweringX8632.h |
@@ -49,9 +49,9 @@ public: |
return (typeWidthInBytes(Ty) + 3) & ~3; |
} |
SizeT getBundleAlignLog2Bytes() const override { return 5; } |
- llvm::ArrayRef<uint8_t> getNonExecBundlePadding() const override { |
- static const uint8_t Padding[] = { 0xF4 }; |
- return llvm::ArrayRef<uint8_t>(Padding, 1); |
+ llvm::ArrayRef<AsmCodeByte> getNonExecBundlePadding() const override { |
+ static const AsmCodeByte Padding[] = { 0xF4 }; |
+ return llvm::ArrayRef<AsmCodeByte>(Padding, 1); |
} |
void emitVariable(const Variable *Var) const override; |
void lowerArguments() override; |