mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
8f5da3624f
variable has not yet been used in an expression. This allows us to support a few cases that show up in real code (mostly because gcc generates it for Objective-C on Darwin), without giving up a reasonable semantic model for assignment. llvm-svn: 103950
12 lines
188 B
ArmAsm
12 lines
188 B
ArmAsm
# RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s
|
|
|
|
# CHECK: TEST0:
|
|
# CHECK: a = 0
|
|
TEST0:
|
|
a = 0
|
|
|
|
# CHECK: .globl _f1
|
|
# CHECK: _f1 = 0
|
|
.globl _f1
|
|
_f1 = 0
|