diff options
author | Dan Gohman <gohman@apple.com> | 2009-08-13 01:36:44 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-08-13 01:36:44 +0000 |
commit | cf20ac4fd12ea3510a8f32a24fff69eebe7b6f4a (patch) | |
tree | 2155d7a05acf35ffccc0a93da466ca561c8d682e /test/CodeGen | |
parent | 38cff389af1d78bd80df0479ef258493e0c5897e (diff) | |
download | external_llvm-cf20ac4fd12ea3510a8f32a24fff69eebe7b6f4a.zip external_llvm-cf20ac4fd12ea3510a8f32a24fff69eebe7b6f4a.tar.gz external_llvm-cf20ac4fd12ea3510a8f32a24fff69eebe7b6f4a.tar.bz2 |
Various AsmWriter output cleanups. Use WriteAsOperand instead of
PrintUnmangledNameSafely.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78878 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r-- | test/CodeGen/SystemZ/05-MemLoadsStores.ll | 4 | ||||
-rw-r--r-- | test/CodeGen/X86/global-sections.ll | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/SystemZ/05-MemLoadsStores.ll b/test/CodeGen/SystemZ/05-MemLoadsStores.ll index 6eb2ddb..5e8fcd6 100644 --- a/test/CodeGen/SystemZ/05-MemLoadsStores.ll +++ b/test/CodeGen/SystemZ/05-MemLoadsStores.ll @@ -1,7 +1,7 @@ ; RUN: llvm-as < %s | llc | grep ly | count 2 ; RUN: llvm-as < %s | llc | grep sty | count 2 -; RUN: llvm-as < %s | llc | grep {l.%} | count 2 -; RUN: llvm-as < %s | llc | grep {st.%} | count 2 +; RUN: llvm-as < %s | llc | grep {l %} | count 2 +; RUN: llvm-as < %s | llc | grep {st %} | count 2 target datalayout = "E-p:64:64:64-i8:8:16-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128-a0:16:16" target triple = "s390x-linux" diff --git a/test/CodeGen/X86/global-sections.ll b/test/CodeGen/X86/global-sections.ll index 0fcb17f..a3eaa5f 100644 --- a/test/CodeGen/X86/global-sections.ll +++ b/test/CodeGen/X86/global-sections.ll @@ -75,9 +75,9 @@ ; LINUX: .type G6,@object ; LINUX: .section .gnu.linkonce.r.G6,"a",@progbits ; LINUX: .weak G6 -; LINUX: G6: # G6 -; LINUX: .size G6, 1 +; LINUX: G6: ; LINUX: .ascii "\001" +; LINUX: .size G6, 1 ; DARWIN: .section __TEXT,__const_coal,coalesced ; DARWIN: .globl _G6 |