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/MSP430/Inst8mr.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/MSP430/Inst8mr.ll')
-rw-r--r-- | test/CodeGen/MSP430/Inst8mr.ll | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/CodeGen/MSP430/Inst8mr.ll b/test/CodeGen/MSP430/Inst8mr.ll index 0b35667..f03c7e1 100644 --- a/test/CodeGen/MSP430/Inst8mr.ll +++ b/test/CodeGen/MSP430/Inst8mr.ll @@ -13,7 +13,7 @@ define void @mov(i8 %a) nounwind { define void @and(i8 %a) nounwind { ; CHECK-LABEL: and: ; CHECK: and.b r15, &foo - %1 = load i8* @foo + %1 = load i8, i8* @foo %2 = and i8 %a, %1 store i8 %2, i8* @foo ret void @@ -22,7 +22,7 @@ define void @and(i8 %a) nounwind { define void @add(i8 %a) nounwind { ; CHECK-LABEL: add: ; CHECK: add.b r15, &foo - %1 = load i8* @foo + %1 = load i8, i8* @foo %2 = add i8 %a, %1 store i8 %2, i8* @foo ret void @@ -31,7 +31,7 @@ define void @add(i8 %a) nounwind { define void @bis(i8 %a) nounwind { ; CHECK-LABEL: bis: ; CHECK: bis.b r15, &foo - %1 = load i8* @foo + %1 = load i8, i8* @foo %2 = or i8 %a, %1 store i8 %2, i8* @foo ret void @@ -41,7 +41,7 @@ define void @bic(i8 zeroext %m) nounwind { ; CHECK-LABEL: bic: ; CHECK: bic.b r15, &foo %1 = xor i8 %m, -1 - %2 = load i8* @foo + %2 = load i8, i8* @foo %3 = and i8 %2, %1 store i8 %3, i8* @foo ret void @@ -50,7 +50,7 @@ define void @bic(i8 zeroext %m) nounwind { define void @xor(i8 %a) nounwind { ; CHECK-LABEL: xor: ; CHECK: xor.b r15, &foo - %1 = load i8* @foo + %1 = load i8, i8* @foo %2 = xor i8 %a, %1 store i8 %2, i8* @foo ret void |