| commit | 13735955f39b3b304c37d2b2840663c131262c18 | [log] [tgz] |
|---|---|---|
| author | Ian Rogers <irogers@google.com> | Wed Oct 08 12:43:28 2014 -0700 |
| committer | Ian Rogers <irogers@google.com> | Thu Oct 09 16:05:58 2014 -0700 |
| tree | 0a731ac42b8230f9929172fa3e3d8051874e2b18 | |
| parent | 25b18bbdaa36ff936eb44f228f0518d4223e9d52 [diff] [blame] |
stdint types all the way! Change-Id: I4e4ef3a2002fc59ebd9097087f150eaf3f2a7e08
diff --git a/compiler/utils/arm/assembler_arm.cc b/compiler/utils/arm/assembler_arm.cc index 637a1ff..b430c7e 100644 --- a/compiler/utils/arm/assembler_arm.cc +++ b/compiler/utils/arm/assembler_arm.cc
@@ -386,7 +386,7 @@ void ArmAssembler::Pad(uint32_t bytes) { AssemblerBuffer::EnsureCapacity ensured(&buffer_); for (uint32_t i = 0; i < bytes; ++i) { - buffer_.Emit<byte>(0); + buffer_.Emit<uint8_t>(0); } }