diff options
| author | 2015-07-31 17:10:43 +0100 | |
|---|---|---|
| committer | 2015-07-31 17:10:43 +0100 | |
| commit | 109c89a8e3b5023d123f8c1313f5843a0ba2e15e (patch) | |
| tree | 9411aa4b24d3838128b436ef42b6a7cef7936e23 /compiler/optimizing/intrinsics.cc | |
| parent | cb34698f42ed688ec98bf3c9562075237ee72490 (diff) | |
ART: Change stream output kNone intrinsic
Name of intrinsics is dumped with C1visualizer and checked with
Checker whose attributes should not contain whitespace. This patch
changes the output printed for non-intrinsified invokes.
Change-Id: I3e565e8c9e26eb61026e7a13823eab20409dd63a
Diffstat (limited to 'compiler/optimizing/intrinsics.cc')
| -rw-r--r-- | compiler/optimizing/intrinsics.cc | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/intrinsics.cc b/compiler/optimizing/intrinsics.cc index 8ef13e125e..bc7da802b1 100644 --- a/compiler/optimizing/intrinsics.cc +++ b/compiler/optimizing/intrinsics.cc @@ -359,7 +359,7 @@ void IntrinsicsRecognizer::Run() {  std::ostream& operator<<(std::ostream& os, const Intrinsics& intrinsic) {    switch (intrinsic) {      case Intrinsics::kNone: -      os << "No intrinsic."; +      os << "None";        break;  #define OPTIMIZING_INTRINSICS(Name, IsStatic) \      case Intrinsics::k ## Name: \  |