From fd5a852e49796374899772381f15c9033dae0057 Mon Sep 17 00:00:00 2001 From: Narayan Kamath Date: Fri, 30 May 2014 11:58:09 +0100 Subject: [PATCH] Fix build. Lint error due to a wrong #include guard. Change-Id: I3b5d56c412580ec14f5c09b859a1bd6f9eb667ee --- compiler/dex/pass_driver_me_post_opt.h | 6 +++--- compiler/dex/post_opt_passes.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/compiler/dex/pass_driver_me_post_opt.h b/compiler/dex/pass_driver_me_post_opt.h index adba363a7..574a6ba04 100644 --- a/compiler/dex/pass_driver_me_post_opt.h +++ b/compiler/dex/pass_driver_me_post_opt.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef ART_COMPILER_DEX_PASS_DRIVER_ME_CLEANUP_H_ -#define ART_COMPILER_DEX_PASS_DRIVER_ME_CLEANUP_H_ +#ifndef ART_COMPILER_DEX_PASS_DRIVER_ME_POST_OPT_H_ +#define ART_COMPILER_DEX_PASS_DRIVER_ME_POST_OPT_H_ #include "pass_driver_me.h" @@ -36,4 +36,4 @@ class PassDriverMEPostOpt : public PassDriverME { }; } // namespace art -#endif // ART_COMPILER_DEX_PASS_DRIVER_ME_CLEANUP_H_ +#endif // ART_COMPILER_DEX_PASS_DRIVER_ME_POST_OPT_H_ diff --git a/compiler/dex/post_opt_passes.h b/compiler/dex/post_opt_passes.h index e101fb57d..f2035052c 100644 --- a/compiler/dex/post_opt_passes.h +++ b/compiler/dex/post_opt_passes.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef ART_COMPILER_DEX_CLEAN_UP_PASSES_H_ -#define ART_COMPILER_DEX_CLEAN_UP_PASSES_H_ +#ifndef ART_COMPILER_DEX_POST_OPT_PASSES_H_ +#define ART_COMPILER_DEX_POST_OPT_PASSES_H_ #include "compiler_internals.h" #include "pass_me.h" @@ -281,4 +281,4 @@ class FreeData : public PassME { } // namespace art -#endif // ART_COMPILER_DEX_CLEAN_UP_PASSES_H_ +#endif // ART_COMPILER_DEX_POST_OPT_PASSES_H_ -- 2.11.0