summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/align-external.ll
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-08-11 15:50:03 +0000
committerDan Gohman <gohman@apple.com>2009-08-11 15:50:03 +0000
commit004072508bfc66159ca09be26f06b8b05c1bac4e (patch)
treefa7a003842c5685d0acd73a3aa39744052edecc6 /test/Transforms/InstCombine/align-external.ll
parent00b0a243bdf2d9675bafbdb44ac3b2df768878b3 (diff)
downloadllvm-004072508bfc66159ca09be26f06b8b05c1bac4e.tar.gz
llvm-004072508bfc66159ca09be26f06b8b05c1bac4e.tar.bz2
llvm-004072508bfc66159ca09be26f06b8b05c1bac4e.tar.xz
Don't assume that external global variables are aligned at their preferred
alignment. Only the minimum alignment guaranteed by the ABI may be assumed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78668 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstCombine/align-external.ll')
-rw-r--r--test/Transforms/InstCombine/align-external.ll22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/Transforms/InstCombine/align-external.ll b/test/Transforms/InstCombine/align-external.ll
new file mode 100644
index 0000000000..38be3143ed
--- /dev/null
+++ b/test/Transforms/InstCombine/align-external.ll
@@ -0,0 +1,22 @@
+; RUN: llvm-as < %s | opt -instcombine | llvm-dis | FileCheck %s
+
+; Don't assume that external global variables have their preferred
+; alignment. They may only have the ABI minimum alignment.
+
+; CHECK: %s = shl i64 %a, 3
+; CHECK: %r = or i64 %s, ptrtoint (i32* @A to i64)
+; CHECK: %q = add i64 %r, 1
+; CHECK: ret i64 %q
+
+target datalayout = "-i32:8:32"
+
+@A = external global i32
+@B = external global i32
+
+define i64 @foo(i64 %a) {
+ %t = ptrtoint i32* @A to i64
+ %s = shl i64 %a, 3
+ %r = or i64 %t, %s
+ %q = add i64 %r, 1
+ ret i64 %q
+}