mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-15 07:39:31 +00:00
testcases for undefined and unreachable
llvm-svn: 17058
This commit is contained in:
parent
3a1215ce83
commit
7900435c81
15
test/Feature/undefined.ll
Normal file
15
test/Feature/undefined.ll
Normal file
@ -0,0 +1,15 @@
|
||||
|
||||
%X = global int undef
|
||||
|
||||
implementation
|
||||
|
||||
declare int "atoi"(sbyte *)
|
||||
|
||||
int %test() {
|
||||
ret int undef
|
||||
}
|
||||
|
||||
int %test2() {
|
||||
%X = add int undef, 1
|
||||
ret int %X
|
||||
}
|
13
test/Feature/unreachable.ll
Normal file
13
test/Feature/unreachable.ll
Normal file
@ -0,0 +1,13 @@
|
||||
|
||||
implementation
|
||||
|
||||
declare void %bar()
|
||||
|
||||
int %foo() { ;; Calling this function has undefined behavior
|
||||
unreachable
|
||||
}
|
||||
|
||||
double %xyz() {
|
||||
call void %bar()
|
||||
unreachable ;; Bar must not return.
|
||||
}
|
Loading…
Reference in New Issue
Block a user