summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHeejin Ahn <aheejin@gmail.com>2017-12-02 02:05:06 +0000
committerHeejin Ahn <aheejin@gmail.com>2017-12-02 02:05:06 +0000
commit527f9bdad5e47434aec78bb0ffa3dc299d44b211 (patch)
tree9b577dff8a046ca7b8ff922317e505d39a2a41b9 /test
parent79f1f0032c4d34fa0108b1ad0653b66f1970a322 (diff)
[WebAssembly] Revert r319488 "Add visibility flag to Wasm symbol flags"
This patch reportedly broke one of LLVM bots (ubuntu-gcc7.1-werror). See http://lab.llvm.org:8011/builders/ubuntu-gcc7.1-werror/builds/3369 for details. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@319602 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/MC/WebAssembly/visibility.ll23
1 files changed, 0 insertions, 23 deletions
diff --git a/test/MC/WebAssembly/visibility.ll b/test/MC/WebAssembly/visibility.ll
deleted file mode 100644
index b445bf45e29..00000000000
--- a/test/MC/WebAssembly/visibility.ll
+++ /dev/null
@@ -1,23 +0,0 @@
-; RUN: llc -mtriple wasm32-unknown-unknown-wasm -filetype=obj %s -o - | obj2yaml | FileCheck %s
-
-; Function with __attribute__((visibility("default")))
-define void @defaultVis() #0 {
-entry:
- ret void
-}
-
-; Function with __attribute__((visibility("hidden")))
-define hidden void @hiddenVis() #0 {
-entry:
- ret void
-}
-
-; CHECK: - Type: CUSTOM
-
-; CHECK: - Type: CUSTOM
-; CHECK-NEXT: Name: linking
-; CHECK-NEXT: DataSize: 0
-; CHECK-NEXT: SymbolInfo:
-; CHECK-NEXT: - Name: hiddenVis
-; CHECK-NEXT: Flags: 4
-; CHECK-NEXT: ...