diff options
Diffstat (limited to 'test/CodeGen/BPF/basictest.ll')
-rw-r--r-- | test/CodeGen/BPF/basictest.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/BPF/basictest.ll b/test/CodeGen/BPF/basictest.ll index 0cbfff8..c0b6af4 100644 --- a/test/CodeGen/BPF/basictest.ll +++ b/test/CodeGen/BPF/basictest.ll @@ -13,14 +13,14 @@ define i32 @test0(i32 %X) { define i32 @store_imm(i32* %a, i32* %b) { entry: store i32 0, i32* %a, align 4 - %0 = getelementptr inbounds i32* %b, i32 1 + %0 = getelementptr inbounds i32, i32* %b, i32 1 store i32 0, i32* %0, align 4 ret i32 0 } @G = external global i8 define zeroext i8 @loadG() { - %tmp = load i8* @G + %tmp = load i8, i8* @G ret i8 %tmp ; CHECK-LABEL: loadG: ; CHECK: ld_64 r1 |