repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Demangle] Add a few more options to the microsoft demangler
[llvm-complete.git]
/
test
/
CodeGen
/
NVPTX
/
bug41651.ll
blob
6039d39407c365035799c4e466814b69f9a084e8
1
; RUN: llc -filetype=asm -o - %s | FileCheck %s
2
target datalayout = "e-i64:64-i128:128-v16:16-v32:32-n16:32:64"
3
target triple = "nvptx64-nvidia-cuda"
4
5
%func = type { i32 (i32, i32)** }
6
7
; CHECK: foo
8
; CHECK: call
9
; CHECK: ret
10
define void @foo() {
11
%call = call %func undef(i32 0, i32 1)
12
ret void
13
}