summaryrefslogtreecommitdiffstats
path: root/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
diff options
context:
space:
mode:
authorDaniel Jasper <djasper@google.com>2013-07-25 11:31:57 +0000
committerDaniel Jasper <djasper@google.com>2013-07-25 11:31:57 +0000
commit516d7971b317d54622c8267ceeeb87186cc9153c (patch)
treef7eaeda6fea747ce65c79253ae1f421728248e27 /llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
parente38ea680ccb9d6ab82e07bfa7a05055ce46cda4f (diff)
downloadbcm5719-llvm-516d7971b317d54622c8267ceeeb87186cc9153c.tar.gz
bcm5719-llvm-516d7971b317d54622c8267ceeeb87186cc9153c.zip
clang-format: Fix switch/case interaction with macros.
Before: #define OPERATION_CASE(name) \ case OP_name: \ return operations::Operation##name switch (OpCode) { CASE(Add); CASE(Subtract); default: return operations::Unknown; } After: #define OPERATION_CASE(name) \ case OP_name: \ return operations::Operation##name; switch (OpCode) { CASE(Add); CASE(Subtract); default: return operations::Unknown; } llvm-svn: 187118
Diffstat (limited to 'llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp')
0 files changed, 0 insertions, 0 deletions
OpenPOWER on IntegriCloud