diff options
author | Stephen Hines <srhines@google.com> | 2014-05-29 02:49:00 -0700 |
---|---|---|
committer | Stephen Hines <srhines@google.com> | 2014-05-29 02:49:00 -0700 |
commit | dce4a407a24b04eebc6a376f8e62b41aaa7b071f (patch) | |
tree | dcebc53f2b182f145a2e659393bf9a0472cedf23 /test/Feature | |
parent | 220b921aed042f9e520c26cffd8282a94c66c3d5 (diff) | |
download | external_llvm-dce4a407a24b04eebc6a376f8e62b41aaa7b071f.zip external_llvm-dce4a407a24b04eebc6a376f8e62b41aaa7b071f.tar.gz external_llvm-dce4a407a24b04eebc6a376f8e62b41aaa7b071f.tar.bz2 |
Update LLVM for 3.5 rebase (r209712).
Change-Id: I149556c940fb7dc92d075273c87ff584f400941f
Diffstat (limited to 'test/Feature')
-rw-r--r-- | test/Feature/alias2.ll | 19 | ||||
-rw-r--r-- | test/Feature/aliases.ll | 4 | ||||
-rw-r--r-- | test/Feature/instructions.ll | 2 |
3 files changed, 22 insertions, 3 deletions
diff --git a/test/Feature/alias2.ll b/test/Feature/alias2.ll new file mode 100644 index 0000000..693ef7c --- /dev/null +++ b/test/Feature/alias2.ll @@ -0,0 +1,19 @@ +; RUN: llvm-as < %s | llvm-dis | FileCheck %s + +@v1 = global i32 0 +; CHECK: @v1 = global i32 0 + +@v2 = global [1 x i32] zeroinitializer +; CHECK: @v2 = global [1 x i32] zeroinitializer + +@v3 = alias i16, i32* @v1 +; CHECK: @v3 = alias i16, i32* @v1 + +@v4 = alias i32, [1 x i32]* @v2 +; CHECK: @v4 = alias i32, [1 x i32]* @v2 + +@v5 = alias addrspace(2) i32, i32* @v1 +; CHECK: @v5 = alias addrspace(2) i32, i32* @v1 + +@v6 = alias i16, i32* @v1 +; CHECK: @v6 = alias i16, i32* @v1 diff --git a/test/Feature/aliases.ll b/test/Feature/aliases.ll index 7fe9d0b..b2ce82a 100644 --- a/test/Feature/aliases.ll +++ b/test/Feature/aliases.ll @@ -7,7 +7,6 @@ @bar = global i32 0 @foo1 = alias i32* @bar @foo2 = alias i32* @bar -@foo3 = alias i32* @foo2 %FunTy = type i32() @@ -15,11 +14,10 @@ define i32 @foo_f() { ret i32 0 } @bar_f = alias weak_odr %FunTy* @foo_f -@bar_ff = alias i32()* @bar_f @bar_i = alias internal i32* @bar -@A = alias bitcast (i32* @bar to i64*) +@A = alias i64, i32* @bar define i32 @test() { entry: diff --git a/test/Feature/instructions.ll b/test/Feature/instructions.ll index d0c303d..aa96294 100644 --- a/test/Feature/instructions.ll +++ b/test/Feature/instructions.ll @@ -4,11 +4,13 @@ define i32 @test_extractelement(<4 x i32> %V) { %R = extractelement <4 x i32> %V, i32 1 ; <i32> [#uses=1] + %S = extractelement <4 x i32> %V, i64 1 ; <i32> [#uses=0] ret i32 %R } define <4 x i32> @test_insertelement(<4 x i32> %V) { %R = insertelement <4 x i32> %V, i32 0, i32 0 ; <<4 x i32>> [#uses=1] + %S = insertelement <4 x i32> %V, i32 0, i64 0 ; <<4 x i32>> [#uses=0] ret <4 x i32> %R } |