Fix a typo in static_assert name.

Bug: 278812060

Test: m berberis_all

Change-Id: I867b3c4719527e15dd1d5ed87fec39c29c3f6603
diff --git a/lite_translator/riscv64_to_x86_64/allocator.h b/lite_translator/riscv64_to_x86_64/allocator.h
index ba3dbe4..a73a714 100644
--- a/lite_translator/riscv64_to_x86_64/allocator.h
+++ b/lite_translator/riscv64_to_x86_64/allocator.h
@@ -27,7 +27,7 @@
 
 template <typename RegType>
 inline constexpr auto kAllocatableRegisters = []() {
-  static_aasert(kDependentTypeFalse<RegType>,
+  static_assert(kDependentTypeFalse<RegType>,
                 "kAllocatableRegisters is only usable with x86_64::Assembler::Register or "
                 "x86_64::Assembler::XMMRegister");
   return true;