[PATCH] D32352: Go to eleven
Simon Pilgrim via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 26 02:49:24 PDT 2017
RKSimon added inline comments.
================
Comment at: lib/Target/X86/X86ISelLowering.cpp:30974
+ Result = combineMulShlAddOrSub(5, 1, /*isAdd*/true);
+ break;
+ case 21:
----------------
Don't bother with the SDValue Result + break - just return here:
```
return combineMulShlAddOrSub(5, 1, /*isAdd*/true);
```
================
Comment at: lib/Target/X86/X86ISelLowering.cpp:31023
+ }
+ return Result;
+}
----------------
return SDValue();
https://reviews.llvm.org/D32352
More information about the llvm-commits
mailing list