repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git]
/
llvm
/
test
/
Assembler
/
invalid-load-missing-explicit-type.ll
blob
8648df5358e682fe56733379961346bc41edd6bd
1
; RUN: not llvm-as < %s 2>&1 | FileCheck %s
2
; CHECK: <stdin>:4:17: error: expected comma after load's type
3
define void @test(ptr %t) {
4
%x = load ptr %t
5
ret void
6
}