diff options
author | Chris Lattner <sabre@nondot.org> | 2003-08-22 05:40:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-08-22 05:40:04 +0000 |
commit | bcaf286f555d00a11a35bca5d7dee7704427a32c (patch) | |
tree | cf17f7167cf0fbf942ee360ccbd42e0541d918ac /test/Feature | |
parent | 7d4d892e1469397b913f7e407653f9a6f6a01033 (diff) | |
download | external_llvm-bcaf286f555d00a11a35bca5d7dee7704427a32c.zip external_llvm-bcaf286f555d00a11a35bca5d7dee7704427a32c.tar.gz external_llvm-bcaf286f555d00a11a35bca5d7dee7704427a32c.tar.bz2 |
New testcase for non-simple variable and type names
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8048 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Feature')
-rw-r--r-- | test/Feature/wierdnames.ll | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/Feature/wierdnames.ll b/test/Feature/wierdnames.ll new file mode 100644 index 0000000..710905f --- /dev/null +++ b/test/Feature/wierdnames.ll @@ -0,0 +1,5 @@ +; Test using double quotes to form names that are not legal in the % form + +"&^ " = type { int } +"%.*+ foo" = global "&^ " { int 5 } +"0" = global float 0.0 ; This CANNOT be %0 |