diff options
| author | 2012-12-01 01:26:51 -0800 | |
|---|---|---|
| committer | 2012-12-01 11:44:15 -0800 | |
| commit | 07ec8e17c978e3bda0202693e6432b56349a5867 (patch) | |
| tree | 112bccd79024ebd831507c42672e01abc13b726e /src/compiler/codegen/local_optimizations.cc | |
| parent | cfaa455374aae0a08c8cb28b5bb306b17866d652 (diff) | |
Intrinsic for java.lang.Thread.currentThread.
Change-Id: I056323a74f8759257bf6b6bb032437e576665006
Diffstat (limited to 'src/compiler/codegen/local_optimizations.cc')
| -rw-r--r-- | src/compiler/codegen/local_optimizations.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/codegen/local_optimizations.cc b/src/compiler/codegen/local_optimizations.cc index ec915f03fa..69b5d8ef36 100644 --- a/src/compiler/codegen/local_optimizations.cc +++ b/src/compiler/codegen/local_optimizations.cc @@ -20,7 +20,7 @@ namespace art { #define DEBUG_OPT(X) -/* Check RAW, WAR, and WAR dependency on the register operands */ +/* Check RAW, WAR, and RAW dependency on the register operands */ #define CHECK_REG_DEP(use, def, check) ((def & check->use_mask) || \ ((use | def) & check->def_mask)) |