blob: 571f793e3b77e5207eb094f8242a6343f13d8a12 [file] [log] [blame]
JF Bastien28928702015-08-25 22:23:15 +00001; RUN: llc < %s -asm-verbose=false | FileCheck %s
2
3; Test that the `.globl` directive is commented out.
4
5target datalayout = "e-p:32:32-i64:64-v128:8:128-n32:64-S128"
6target triple = "wasm32-unknown-unknown"
7
8; CHECK-NOT: globl
9; CHECK: ;; .globl foo
10; CHECK-NOT: globl
11; CHECK-LABEL: foo:
12define void @foo() {
13 ret void
14}