diff options
author | Joerg Sonnenberger <joerg@bec.de> | 2011-03-04 20:03:14 +0000 |
---|---|---|
committer | Joerg Sonnenberger <joerg@bec.de> | 2011-03-04 20:03:14 +0000 |
commit | 62f759791a015c1ffaebfb18f42b7d77eee0ebbe (patch) | |
tree | 5441fa0afc9f310b2ff7d80ea3661c66a027563a /llvm/test/CodeGen/ARM/section.ll | |
parent | f8198e431160e7ca713b88dcf90715ae1b03e6ed (diff) | |
download | bcm5719-llvm-62f759791a015c1ffaebfb18f42b7d77eee0ebbe.tar.gz bcm5719-llvm-62f759791a015c1ffaebfb18f42b7d77eee0ebbe.zip |
Be nice to Xcore and the XMOS assembler and avoid quoting section names
that contain only letters, digits and the characters "_" and ".".
llvm-svn: 127028
Diffstat (limited to 'llvm/test/CodeGen/ARM/section.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/section.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/ARM/section.ll b/llvm/test/CodeGen/ARM/section.ll index ff708d55ab3..7a566d49d32 100644 --- a/llvm/test/CodeGen/ARM/section.ll +++ b/llvm/test/CodeGen/ARM/section.ll @@ -1,7 +1,7 @@ ; RUN: llc < %s -mtriple=arm-linux | \ ; RUN: grep {__DTOR_END__:} ; RUN: llc < %s -mtriple=arm-linux | \ -; RUN: grep {\\.section."\\.dtors","aw",.progbits} +; RUN: grep {\\.section.\\.dtors,"aw",.progbits} @__DTOR_END__ = internal global [1 x i32] zeroinitializer, section ".dtors" ; <[1 x i32]*> [#uses=0] |