diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-23 04:54:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-23 04:54:10 +0000 |
commit | 05f845314a67f9c30a67e55ce1e3168ff6732ce8 (patch) | |
tree | f1fd0285f7ac484a88b6828aceeeca198773eb4c /test/CodeGen | |
parent | 33b1758e16f050c79fd7d93a04e3ef7aa2971b0c (diff) | |
download | external_llvm-05f845314a67f9c30a67e55ce1e3168ff6732ce8.zip external_llvm-05f845314a67f9c30a67e55ce1e3168ff6732ce8.tar.gz external_llvm-05f845314a67f9c30a67e55ce1e3168ff6732ce8.tar.bz2 |
emit .ascii and .asciz through MCStreamer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94282 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r-- | test/CodeGen/X86/global-sections.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/global-sections.ll b/test/CodeGen/X86/global-sections.ll index b6caa4f..1a7b577 100644 --- a/test/CodeGen/X86/global-sections.ll +++ b/test/CodeGen/X86/global-sections.ll @@ -75,14 +75,14 @@ ; LINUX: .section .gnu.linkonce.r.G6,"a",@progbits ; LINUX: .weak G6 ; LINUX: G6: -; LINUX: .ascii "\001" +; LINUX: .byte 1 ; LINUX: .size G6, 1 ; DARWIN: .section __TEXT,__const_coal,coalesced ; DARWIN: .globl _G6 ; DARWIN: .weak_definition _G6 ; DARWIN:_G6: -; DARWIN: .ascii "\001" +; DARWIN: .byte 1 @G7 = constant [10 x i8] c"abcdefghi\00" |