diff options
author | Pirama Arumuga Nainar <pirama@google.com> | 2015-04-10 22:08:18 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-04-10 22:08:18 +0000 |
commit | 13a7db5b9c4f5e543d037be68ec3428216bfd550 (patch) | |
tree | 1b2c9792582e12f5af0b1512e3094425f0dc0df9 /test/CodeGen/X86/shift-bmi2.ll | |
parent | 0eb46f5d1e06a4284663d636a74b06adc3a161d7 (diff) | |
parent | 31195f0bdca6ee2a5e72d07edf13e1d81206d949 (diff) | |
download | external_llvm-13a7db5b9c4f5e543d037be68ec3428216bfd550.zip external_llvm-13a7db5b9c4f5e543d037be68ec3428216bfd550.tar.gz external_llvm-13a7db5b9c4f5e543d037be68ec3428216bfd550.tar.bz2 |
am 31195f0b: Merge "Update aosp/master llvm for rebase to r233350"
* commit '31195f0bdca6ee2a5e72d07edf13e1d81206d949':
Update aosp/master llvm for rebase to r233350
Diffstat (limited to 'test/CodeGen/X86/shift-bmi2.ll')
-rw-r--r-- | test/CodeGen/X86/shift-bmi2.ll | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/CodeGen/X86/shift-bmi2.ll b/test/CodeGen/X86/shift-bmi2.ll index 7615754..63b6ec5 100644 --- a/test/CodeGen/X86/shift-bmi2.ll +++ b/test/CodeGen/X86/shift-bmi2.ll @@ -27,7 +27,7 @@ entry: define i32 @shl32p(i32* %p, i32 %shamt) nounwind uwtable readnone { entry: - %x = load i32* %p + %x = load i32, i32* %p %shl = shl i32 %x, %shamt ; BMI2: shl32p ; Source order scheduling prevents folding, rdar:14208996. @@ -41,7 +41,7 @@ entry: define i32 @shl32pi(i32* %p) nounwind uwtable readnone { entry: - %x = load i32* %p + %x = load i32, i32* %p %shl = shl i32 %x, 5 ; BMI2: shl32pi ; BMI2-NOT: shlxl @@ -72,7 +72,7 @@ entry: define i64 @shl64p(i64* %p, i64 %shamt) nounwind uwtable readnone { entry: - %x = load i64* %p + %x = load i64, i64* %p %shl = shl i64 %x, %shamt ; BMI264: shl64p ; BMI264: shlxq %{{.+}}, %{{.+}}, %{{.+}} @@ -82,7 +82,7 @@ entry: define i64 @shl64pi(i64* %p) nounwind uwtable readnone { entry: - %x = load i64* %p + %x = load i64, i64* %p %shl = shl i64 %x, 7 ; BMI264: shl64pi ; BMI264-NOT: shlxq @@ -104,7 +104,7 @@ entry: define i32 @lshr32p(i32* %p, i32 %shamt) nounwind uwtable readnone { entry: - %x = load i32* %p + %x = load i32, i32* %p %shl = lshr i32 %x, %shamt ; BMI2: lshr32p ; Source order scheduling prevents folding, rdar:14208996. @@ -127,7 +127,7 @@ entry: define i64 @lshr64p(i64* %p, i64 %shamt) nounwind uwtable readnone { entry: - %x = load i64* %p + %x = load i64, i64* %p %shl = lshr i64 %x, %shamt ; BMI264: lshr64p ; BMI264: shrxq %{{.+}}, %{{.+}}, %{{.+}} @@ -149,7 +149,7 @@ entry: define i32 @ashr32p(i32* %p, i32 %shamt) nounwind uwtable readnone { entry: - %x = load i32* %p + %x = load i32, i32* %p %shl = ashr i32 %x, %shamt ; BMI2: ashr32p ; Source order scheduling prevents folding, rdar:14208996. @@ -172,7 +172,7 @@ entry: define i64 @ashr64p(i64* %p, i64 %shamt) nounwind uwtable readnone { entry: - %x = load i64* %p + %x = load i64, i64* %p %shl = ashr i64 %x, %shamt ; BMI264: ashr64p ; BMI264: sarxq %{{.+}}, %{{.+}}, %{{.+}} |