diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-06-03 20:07:32 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-06-03 20:07:32 +0000 |
| commit | 63e92fb166b7eab187ecd19798518dced27c181c (patch) | |
| tree | 659b35f8f422b546895309a84458db53cdeebe74 /llvm/test/Feature | |
| parent | 52b7442c281603319817753037bb61c182d4f79f (diff) | |
| download | bcm5719-llvm-63e92fb166b7eab187ecd19798518dced27c181c.tar.gz bcm5719-llvm-63e92fb166b7eab187ecd19798518dced27c181c.zip | |
Fix a small bug in the parsing of anonymous globals.
It was able to parse
hidden dllexport global i32 42
but not
dllexport global i32 42
llvm-svn: 210121
Diffstat (limited to 'llvm/test/Feature')
| -rw-r--r-- | llvm/test/Feature/globalvars.ll | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/test/Feature/globalvars.ll b/llvm/test/Feature/globalvars.ll index dad1cf31d5e..84b4bdfd375 100644 --- a/llvm/test/Feature/globalvars.ll +++ b/llvm/test/Feature/globalvars.ll @@ -16,3 +16,5 @@ define i32 @foo(i32 %blah) { ret i32 %blah } +hidden dllexport global i32 42 +dllexport global i32 42 |

