forked from OSchip/llvm-project
Fix misspellings, patch contributed by Gabor Greif!
llvm-svn: 20341
This commit is contained in:
parent
5315aa0ec6
commit
600420647f
|
@ -1,6 +1,6 @@
|
||||||
; RUN: llvm-as < %s -o /dev/null -f
|
; RUN: llvm-as < %s -o /dev/null -f
|
||||||
|
|
||||||
; The old C front-end never generated empty structures, now the new one
|
; The old C front-end never generated empty structures, now the new one
|
||||||
; can. For some reason we never handled them in the parser. Wierd.
|
; can. For some reason we never handled them in the parser. Weird.
|
||||||
|
|
||||||
%X = global {} {}
|
%X = global {} {}
|
||||||
|
|
|
@ -5,5 +5,5 @@ void *dlclose(void*);
|
||||||
void ap_os_dso_unload(void *handle)
|
void ap_os_dso_unload(void *handle)
|
||||||
{
|
{
|
||||||
dlclose(handle);
|
dlclose(handle);
|
||||||
return; /* This return triggers the bug: Wierd */
|
return; /* This return triggers the bug: Weird */
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; RUN: llvm-as -f %s -o %t.bc
|
; RUN: llvm-as -f %s -o %t.bc
|
||||||
; RUN: lli %t.bc > /dev/null
|
; RUN: lli %t.bc > /dev/null
|
||||||
|
|
||||||
; This tests to make sure that we can evaluate wierd constant expressions
|
; This tests to make sure that we can evaluate weird constant expressions
|
||||||
%A = global int 5
|
%A = global int 5
|
||||||
%B = global int 6
|
%B = global int 6
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue