mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
3dd0d690f3
empty SmallVector. llvm-svn: 72512
11 lines
188 B
LLVM
11 lines
188 B
LLVM
; RUN: llvm-as < %s | opt -sccp -disable-output
|
|
; PR4277
|
|
|
|
define i32 @main() nounwind {
|
|
entry:
|
|
%0 = tail call signext i8 (...)* @sin() nounwind
|
|
ret i32 0
|
|
}
|
|
|
|
declare signext i8 @sin(...)
|