diff options
author | Vladimir Marko <vmarko@google.com> | 2014-07-08 17:49:09 +0100 |
---|---|---|
committer | Vladimir Marko <vmarko@google.com> | 2014-07-08 17:49:09 +0100 |
commit | 2aaed94965c2d483598660db11a1e7d608682516 (patch) | |
tree | 4b8877415f90a49f83196334da22d9d4981b99b9 /compiler/dex/quick/dex_file_method_inliner.cc | |
parent | c4c601b6dbe5e1a7321d663b36a531a87f21e931 (diff) | |
download | art-2aaed94965c2d483598660db11a1e7d608682516.zip art-2aaed94965c2d483598660db11a1e7d608682516.tar.gz art-2aaed94965c2d483598660db11a1e7d608682516.tar.bz2 |
Fix a compile assert name with inverted meaning.
Change-Id: I50cc9a8b88c19e1ce7bc5b34cc4b7d650b2f052d
Diffstat (limited to 'compiler/dex/quick/dex_file_method_inliner.cc')
-rw-r--r-- | compiler/dex/quick/dex_file_method_inliner.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dex/quick/dex_file_method_inliner.cc b/compiler/dex/quick/dex_file_method_inliner.cc index 36456bc..6191e4b 100644 --- a/compiler/dex/quick/dex_file_method_inliner.cc +++ b/compiler/dex/quick/dex_file_method_inliner.cc @@ -85,7 +85,7 @@ COMPILE_ASSERT(!kIntrinsicIsStatic[kIntrinsicCas], Cas_must_not_be_static); COMPILE_ASSERT(!kIntrinsicIsStatic[kIntrinsicUnsafeGet], UnsafeGet_must_not_be_static); COMPILE_ASSERT(!kIntrinsicIsStatic[kIntrinsicUnsafePut], UnsafePut_must_not_be_static); COMPILE_ASSERT(kIntrinsicIsStatic[kIntrinsicSystemArrayCopyCharArray], - SystemArrayCopyCharArray_must_not_be_static); + SystemArrayCopyCharArray_must_be_static); MIR* AllocReplacementMIR(MIRGraph* mir_graph, MIR* invoke, MIR* move_return) { MIR* insn = mir_graph->NewMIR(); |