diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-08-08 06:56:16 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-08-08 06:56:16 +0000 |
commit | 711b6dce246c87b5d830966bed823d0e7aa15300 (patch) | |
tree | 9ecbf910a5d51f5486b38f2db97d122569501a6a /test/CodeGen/ARM/2008-08-07-AsmPrintBug.ll | |
parent | 15621a2569c3789a00624aaa0d255eaf3f130b63 (diff) | |
download | external_llvm-711b6dce246c87b5d830966bed823d0e7aa15300.zip external_llvm-711b6dce246c87b5d830966bed823d0e7aa15300.tar.gz external_llvm-711b6dce246c87b5d830966bed823d0e7aa15300.tar.bz2 |
It's not legal to output a GV in a coalesced section if it's used in an ARM PIC relative constantpool.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54519 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/2008-08-07-AsmPrintBug.ll')
-rw-r--r-- | test/CodeGen/ARM/2008-08-07-AsmPrintBug.ll | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/2008-08-07-AsmPrintBug.ll b/test/CodeGen/ARM/2008-08-07-AsmPrintBug.ll new file mode 100644 index 0000000..d2a8bb2 --- /dev/null +++ b/test/CodeGen/ARM/2008-08-07-AsmPrintBug.ll @@ -0,0 +1,13 @@ +; RUN: llvm-as < %s | llc -mtriple=arm-apple-darwin -mattr=+v6 -relocation-model=pic | grep lcomm + + %struct.FILE = type { i8*, i32, i32, i16, i16, %struct.__sbuf, i32, i8*, i32 (i8*)*, i32 (i8*, i8*, i32)*, i64 (i8*, i64, i32)*, i32 (i8*, i8*, i32)*, %struct.__sbuf, %struct.__sFILEX*, i32, [3 x i8], [1 x i8], %struct.__sbuf, i32, i64 } + %struct.__gcov_var = type { %struct.FILE*, i32, i32, i32, i32, i32, i32, [1025 x i32] } + %struct.__sFILEX = type opaque + %struct.__sbuf = type { i8*, i32 } +@__gcov_var = common global %struct.__gcov_var zeroinitializer ; <%struct.__gcov_var*> [#uses=1] + +define i32 @__gcov_close() nounwind { +entry: + load i32* getelementptr (%struct.__gcov_var* @__gcov_var, i32 0, i32 5), align 4 ; <i32>:0 [#uses=1] + ret i32 %0 +} |