diff options
author | Chris Lattner <sabre@nondot.org> | 2002-07-25 20:27:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-07-25 20:27:31 +0000 |
commit | 1874564482734dcad95b5c72dd683133882c0de7 (patch) | |
tree | 6643cb0fe3570c4252b5e4bd6ef58b9209b83c69 | |
parent | cdcfcf65d9c64141edbffc016e00db2a3aeb7fa0 (diff) | |
download | external_llvm-1874564482734dcad95b5c72dd683133882c0de7.zip external_llvm-1874564482734dcad95b5c72dd683133882c0de7.tar.gz external_llvm-1874564482734dcad95b5c72dd683133882c0de7.tar.bz2 |
Add testcase for disassembler problem.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3098 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Assembler/2002-07-25-QuoteInString.llx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Assembler/2002-07-25-QuoteInString.llx b/test/Assembler/2002-07-25-QuoteInString.llx new file mode 100644 index 0000000..8da7018 --- /dev/null +++ b/test/Assembler/2002-07-25-QuoteInString.llx @@ -0,0 +1,6 @@ +; Test double quotes in strings work correctly! +; RUN: as < %s | dis | as | dis +; + +%str = internal global [6 x sbyte] c"\22foo\22\00" + |